Skip to content

Commit

Permalink
Update deploy.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
ameenalasady authored Oct 17, 2024
1 parent 5ebea41 commit 74e68d6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
- name: Build project
run: npm run build
- name: Upload production-ready build files
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v3 # Updated to v3
with:
name: production-files
path: ./dist
Expand All @@ -26,7 +26,7 @@ jobs:
if: github.ref == 'refs/heads/main'
steps:
- name: Download artifact
uses: actions/download-artifact@v2
uses: actions/download-artifact@v3 # Updated to v3
with:
name: production-files
path: ./dist
Expand Down

0 comments on commit 74e68d6

Please sign in to comment.