Skip to content

fix: Ajustando para v4 no workflow para tentar executar github actions e pages novamente #3

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Mar 5, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:

steps:
- name: Passo 1 - Obter cópia do código-fonte do repositório
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Passo 2 - Verificar versões do Node e Newman
run: |
Expand All @@ -50,7 +50,7 @@ jobs:

- name: Passo 6 - Configurar pages
if: ${{ always() }}
uses: actions/configure-pages@v2
uses: actions/configure-pages@v4

- name: Passo 7 - Baixar report html armazenado no "Passo 5 - Armazenar report html"
if: ${{ always() }}
Expand All @@ -61,12 +61,12 @@ jobs:

- name: Passo 8 - Armazenar pages
if: ${{ always() }}
uses: actions/upload-pages-artifact@v1
uses: actions/upload-pages-artifact@v4
with:
path: ./reports
retention-days: 30

- name: Passo 9 - Deploy/Publicar no Github Pages na "url" configurada em "postman-newman-api-serve-rest > environment"
if: ${{ always() }}
id: deployment
uses: actions/deploy-pages@v1
uses: actions/deploy-pages@v4
Loading