Skip to content
This repository has been archived by the owner on Dec 31, 2024. It is now read-only.

Commit

Permalink
Traducidos nombres pasos actions
Browse files Browse the repository at this point in the history
  • Loading branch information
TeenBiscuits authored Jan 22, 2024
1 parent 286ad65 commit ccac0b4
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ env:
DOCKER_VERSION: 233.4797

jobs:
build:
construir:
runs-on: ubuntu-latest

steps:
Expand All @@ -29,7 +29,7 @@ jobs:
artifact: ${{ env.ARTIFACT }}
docker-version: ${{ env.DOCKER_VERSION }}

- name: Subir documentación
- name: Subir artefacto
uses: actions/upload-artifact@v4
with:
name: docs
Expand All @@ -38,9 +38,9 @@ jobs:
artifacts/report.json
retention-days: 7

test:
comprobar:
# Requires build job results
needs: build
needs: construir
runs-on: ubuntu-latest

steps:
Expand All @@ -55,20 +55,20 @@ jobs:
with:
instance: ${{ env.INSTANCE }}

deploy:
publicar:
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
# Requires the build job results
needs: test
needs: comprobar
runs-on: ubuntu-latest
steps:
- name: Descargar artefacto
uses: actions/download-artifact@v4
with:
name: docs

- name: Descomprimiendo artefacto
- name: Descomprimir artefacto
run: unzip -O UTF-8 -qq ${{ env.ARTIFACT }} -d dir

- name: Configurar Pages
Expand Down

0 comments on commit ccac0b4

Please sign in to comment.