Skip to content

Commit

Permalink
Fix nix cache
Browse files Browse the repository at this point in the history
  • Loading branch information
nktpro committed Apr 11, 2024
1 parent 6cd1e54 commit 6d7fd56
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/dev.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -53,14 +53,14 @@ jobs:
NIX_OUTPUT: .#packages.${{ matrix.arch.nix }}.runner-jre
run: |
nix store sign "${NIX_OUTPUT}" -v -r -k ~/.secrets/nix-cache-private-key
nix copy -v "${NIX_OUTPUT}" --to s3://nixed/cache
nix copy -v --to "s3://${NIX_CACHE_BUCKET_NAME}/cache?region=${NIX_CACHE_BUCKET_REGION}&compression=zstd&parallel-compression=true" "${NIX_OUTPUT}"
- name: Cache intellij-scala-runners
env:
NIX_OUTPUT: .#packages.${{ matrix.arch.nix }}.intellij-scala-runners
run: |
nix store sign "${NIX_OUTPUT}" -v -r -k ~/.secrets/nix-cache-private-key
nix copy -v "${NIX_OUTPUT}" --to s3://nixed/cache
nix copy -v --to "s3://${NIX_CACHE_BUCKET_NAME}/cache?region=${NIX_CACHE_BUCKET_REGION}&compression=zstd&parallel-compression=true" "${NIX_OUTPUT}"
- name: Build container images
if: ${{ matrix.arch.image }}
Expand Down

0 comments on commit 6d7fd56

Please sign in to comment.