Skip to content

Commit

Permalink
Bump GitHub actions
Browse files Browse the repository at this point in the history
  • Loading branch information
sbesson committed Sep 10, 2024
1 parent cd366bd commit 85f3ca6
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,15 +9,15 @@ jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Build static website
run: ./build.sh
env:
UID: 1001
- name: Create website archive
run: tar -zcvf ${{ github.event.repository.name }}.tar.gz -C _site ./
- name: Upload website archive as artifact
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: ${{ github.event.repository.name }}.tar.gz
path: ${{ github.event.repository.name }}.tar.gz
Expand All @@ -27,7 +27,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Download website archive
uses: actions/download-artifact@v2
uses: actions/download-artifact@v4
with:
name: ${{ github.event.repository.name }}.tar.gz
- name: Create checksum
Expand Down

0 comments on commit 85f3ca6

Please sign in to comment.