Skip to content

Commit

Permalink
update github action
Browse files Browse the repository at this point in the history
  • Loading branch information
schassande committed Jan 30, 2025
1 parent 3cc6ef5 commit 5021e3d
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,9 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout your repository using git
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Install, build, and upload your site
uses: withastro/action@v1
uses: withastro/action@v3
# with:
# path: . # The root location of your Astro project inside the repository. (optional)
# node-version: 18 # The specific version of Node that should be used to build your site. Defaults to 18. (optional)
Expand All @@ -32,15 +32,15 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Download Artecfact
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: github-pages
- name: Untar
run: |
mkdir public
tar xf artifact.tar -C public/
- name: Deploy
uses: peaceiris/actions-gh-pages@v3.7.3
uses: peaceiris/actions-gh-pages@v4
with:
deploy_key: ${{ secrets.ACTIONS_DEPLOY_KEY }}
external_repository: snowcamp/snowcamp.github.io
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/update_voxxrin.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout your repository using git
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: update
env:
VOXXRIN_TOKEN: ${{ secrets.VOXXRIN_TOKEN }}
Expand Down

0 comments on commit 5021e3d

Please sign in to comment.