Skip to content

Commit

Permalink
cicd: atualizado workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
BernardoSemiOficial committed Sep 21, 2024
1 parent 6de25d4 commit b17d6f3
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ jobs:
working-directory: frontend

- name: Build
run: npm run build --if-present
run: npm run build:production --if-present
working-directory: frontend

- name: Setup Pages
Expand All @@ -54,7 +54,7 @@ jobs:
uses: actions/upload-pages-artifact@v3
with:
# Carregar repositório inteiro
path: "./frontend/dist/browser"
path: "frontend/dist/browser"
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
working-directory: frontend

- name: Build
run: npm run build --if-present
run: npm run build:production --if-present
working-directory: frontend

- name: Test
Expand Down

0 comments on commit b17d6f3

Please sign in to comment.