Skip to content

Commit

Permalink
Update deploy.yml
Browse files Browse the repository at this point in the history
Update version of actions since actions/upload-artifact@v3 now errors on deprecation warning.

See latest example at https://vitejs.dev/guide/static-deploy
  • Loading branch information
cwhelchel authored Feb 18, 2025
1 parent 6f6ac5b commit d4810e6
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,12 +42,12 @@ jobs:
- name: Build
run: npm run build
- name: Setup Pages
uses: actions/configure-pages@v3
uses: actions/configure-pages@v4
- name: Upload artifact
uses: actions/upload-pages-artifact@v2
uses: actions/upload-pages-artifact@v3
with:
# Upload dist repository
path: './dist'
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v2
uses: actions/deploy-pages@v4

0 comments on commit d4810e6

Please sign in to comment.