Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/build-aarch64-linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
nix build .#packages.aarch64-linux.nixsa-tarball -L
cp result/nixsa-*.tar.xz .
- name: Create GitHub cache from build artifacts
uses: actions/cache/save@v4
uses: actions/cache/save@v5
with:
path: nixsa-*.tar.xz
key: ${{ inputs.cache-key }}
2 changes: 1 addition & 1 deletion .github/workflows/build-x86_64-linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:
nix build .#packages.x86_64-linux.nixsa-tarball -L
cp result/nixsa-*.tar.xz .
- name: Create GitHub cache from build artifacts
uses: actions/cache/save@v4
uses: actions/cache/save@v5
with:
path: nixsa-*.tar.xz
key: ${{ inputs.cache-key }}
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ jobs:
steps:
- uses: actions/checkout@v4
- name: Restore Github cache artifacts
uses: actions/cache/restore@v4
uses: actions/cache/restore@v5
with:
path: nixsa-*.tar.xz
key: x86_64-linux-artifacts-${{ github.sha }}
Expand All @@ -82,7 +82,7 @@ jobs:
# steps:
# - uses: actions/checkout@v4
# - name: Restore Github cache artifacts
# uses: actions/cache/restore@v4
# uses: actions/cache/restore@v5
# with:
# path: nixsa-*.tar.xz
# key: aarch64-linux-artifacts-${{ github.sha }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release-tags.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,15 +34,15 @@ jobs:
run: mkdir -p ./artifacts

- name: Fetch cached x86_64-linux binary
uses: actions/cache/restore@v4
uses: actions/cache/restore@v5
with:
path: nixsa-*.tar.xz
key: release-x86_64-linux-artifacts-${{ github.sha }}
- name: Move artifact to artifacts directory
run: mv ./nixsa-*.tar.xz ./artifacts/

# - name: Fetch cached aarch64-linux binary
# uses: actions/cache/restore@v4
# uses: actions/cache/restore@v5
# with:
# path: nixsa-*.tar.xz
# key: release-aarch64-linux-artifacts-${{ github.sha }}
Expand Down
Loading