Skip to content

Commit

Permalink
update actions in deployment workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
fitzy1321 committed Jul 25, 2024
1 parent 7a3aeb2 commit 418b186
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/gh-pages-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ jobs:


- name: Download and install Trunk binary
run: wget -qO- https://github.com/trunk-rs/trunk/releases/download/v0.18.4/trunk-x86_64-unknown-linux-gnu.tar.gz | tar -xzf-
run: wget -qO- https://github.com/trunk-rs/trunk/releases/download/v0.20.2/trunk-x86_64-unknown-linux-gnu.tar.gz | tar -xzf-

- name: Build with Trunk
# "${GITHUB_REPOSITORY#*/}" evaluates into the name of the repository
Expand All @@ -70,17 +70,17 @@ jobs:
# Deploy with Github Static Pages

- name: Setup Pages
uses: actions/configure-pages@v4
uses: actions/configure-pages@v5
with:
enablement: true
# token:

- name: Upload artifact
uses: actions/upload-pages-artifact@v2
uses: actions/upload-pages-artifact@v3
with:
# Upload dist dir
path: './dist'

- name: Deploy to GitHub Pages 🚀
id: deployment
uses: actions/deploy-pages@v3
uses: actions/deploy-pages@v4

0 comments on commit 418b186

Please sign in to comment.