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
10 changes: 5 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ jobs:
steps:
- uses: actions/checkout@v4
- name: Restore Github cache artifacts
uses: actions/download-artifact@v6
uses: actions/download-artifact@v8
with:
name: nix-installer-x86_64-linux
- name: Move & set executable
Expand Down Expand Up @@ -179,7 +179,7 @@ jobs:
steps:
- uses: actions/checkout@v4
- name: Restore Github cache artifacts
uses: actions/download-artifact@v6
uses: actions/download-artifact@v8
with:
name: nix-installer-x86_64-linux
- name: Move & set executable
Expand Down Expand Up @@ -302,7 +302,7 @@ jobs:
steps:
- uses: actions/checkout@v4
- name: Restore Github cache artifacts
uses: actions/download-artifact@v6
uses: actions/download-artifact@v8
with:
name: nix-installer-aarch64-linux
- name: Move & set executable
Expand Down Expand Up @@ -419,7 +419,7 @@ jobs:
steps:
- uses: actions/checkout@v4
- name: Restore Github cache artifacts
uses: actions/download-artifact@v6
uses: actions/download-artifact@v8
with:
name: nix-installer-aarch64-darwin
- name: Move & set executable
Expand Down Expand Up @@ -514,7 +514,7 @@ jobs:
steps:
- uses: actions/checkout@v4
- name: Restore Github cache artifacts
uses: actions/download-artifact@v6
uses: actions/download-artifact@v8
with:
name: nix-installer-x86_64-linux
- name: Move & set executable
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/release-branches.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,15 +34,15 @@ jobs:
run: mkdir -p ./artifacts

- name: Fetch x86_64-linux binary artifact
uses: actions/download-artifact@v6
uses: actions/download-artifact@v8
with:
name: nix-installer-x86_64-linux
- name: Fetch aarch64-linux binary artifact
uses: actions/download-artifact@v6
uses: actions/download-artifact@v8
with:
name: nix-installer-aarch64-linux
- name: Fetch aarch64-darwin binary artifact
uses: actions/download-artifact@v6
uses: actions/download-artifact@v8
with:
name: nix-installer-aarch64-darwin
- name: Move binaries into upload staging dir
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/release-prs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -69,15 +69,15 @@ jobs:
run: mkdir -p ./artifacts

- name: Fetch x86_64-linux binary artifact
uses: actions/download-artifact@v6
uses: actions/download-artifact@v8
with:
name: nix-installer-x86_64-linux
- name: Fetch aarch64-linux binary artifact
uses: actions/download-artifact@v6
uses: actions/download-artifact@v8
with:
name: nix-installer-aarch64-linux
- name: Fetch aarch64-darwin binary artifact
uses: actions/download-artifact@v6
uses: actions/download-artifact@v8
with:
name: nix-installer-aarch64-darwin
- name: Move binaries into upload staging dir
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/release-tags.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,15 +31,15 @@ jobs:
run: mkdir -p ./artifacts

- name: Fetch x86_64-linux binary artifact
uses: actions/download-artifact@v6
uses: actions/download-artifact@v8
with:
name: nix-installer-x86_64-linux
- name: Fetch aarch64-linux binary artifact
uses: actions/download-artifact@v6
uses: actions/download-artifact@v8
with:
name: nix-installer-aarch64-linux
- name: Fetch aarch64-darwin binary artifact
uses: actions/download-artifact@v6
uses: actions/download-artifact@v8
with:
name: nix-installer-aarch64-darwin
- name: Move binaries into upload staging dir
Expand Down
Loading