Skip to content

Commit

Permalink
Bump versions
Browse files Browse the repository at this point in the history
  • Loading branch information
hayatoito committed Feb 17, 2024
1 parent 1afcf80 commit f7ce5f6
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,10 @@ jobs:
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Cache site
id: cache-site
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: ./cache
key: ${{ runner.os }}-cache-site-${{ hashFiles('.env') }}
Expand All @@ -38,13 +38,13 @@ jobs:
run: ./cache/site build --root-dir . --config=config-release.toml --out-dir ./out
- name: Setup Pages
if: github.event_name == 'push'
uses: actions/configure-pages@v3
uses: actions/configure-pages@v4
- name: Upload artifact
if: github.event_name == 'push'
uses: actions/upload-pages-artifact@v1
uses: actions/upload-pages-artifact@v3
with:
path: './out'
- name: Deploy to GitHub Pages
if: github.event_name == 'push'
id: deployment
uses: actions/deploy-pages@v2
uses: actions/deploy-pages@v4

0 comments on commit f7ce5f6

Please sign in to comment.