Skip to content

Commit

Permalink
ci: add paths to restore
Browse files Browse the repository at this point in the history
  • Loading branch information
sandydoo committed Nov 25, 2024
1 parent c66ac36 commit 3c51a38
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,27 +21,31 @@ jobs:
uses: actions/cache/restore@v4
with:
key: nar-toolbox-x86_64-linux-${{ github.sha }}
path: nar-toolbox

- run: mv ./nar-toolbox ./builds/nar-toolbox-x86_64-linux

- name: Fetch x86_64-darwin binary
uses: actions/cache/restore@v4
with:
key: nar-toolbox-x86_64-darwin-${{ github.sha }}
path: nar-toolbox

- run: mv ./nar-toolbox ./builds/nar-toolbox-x86_64-darwin

- name: Fetch aarch64-linux binary
uses: actions/cache/restore@v4
with:
key: nar-toolbox-aarch64-linux-${{ github.sha }}
path: nar-toolbox

- run: mv ./nar-toolbox ./builds/nar-toolbox-aarch64-linux

- name: Fetch aarch64-darwin binary
uses: actions/cache/restore@v4
with:
key: nar-toolbox-aarch64-darwin-${{ github.sha }}
path: nar-toolbox

- run: mv ./nar-toolbox ./builds/nar-toolbox-aarch64-darwin

Expand Down

0 comments on commit 3c51a38

Please sign in to comment.