Skip to content

Commit

Permalink
Fix cachix auth
Browse files Browse the repository at this point in the history
  • Loading branch information
ThetaSinner committed Jul 25, 2024
1 parent 328fe76 commit 7df005d
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/actions/common-setup/action.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: Common setup
description: Common setup steps for jobs that use Nix
inputs:
cachix-token:
cachix_token:
description: 'The Cachix token to use for caching'
required: true
maximise-build-space:
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
- uses: actions/checkout@v4
- uses: ./.github/actions/common-setup
with:
cachix-token: ${{ secrets.CACHIX_AUTH_TOKEN }}
cachix_token: ${{ secrets.CACHIX_AUTH_TOKEN }}
maximise-build-space: false

- name: Check formatting
Expand All @@ -47,7 +47,7 @@ jobs:
- uses: actions/checkout@v4
- uses: ./.github/actions/common-setup
with:
cachix-token: ${{ secrets.CACHIX_AUTH_TOKEN }}
cachix_token: ${{ secrets.CACHIX_AUTH_TOKEN }}

# Lair Keystore
- name: Build Lair Keystore for x86_64-unknown-linux-gnu
Expand Down Expand Up @@ -151,7 +151,7 @@ jobs:
- uses: actions/checkout@v4
- uses: ./.github/actions/common-setup
with:
cachix-token: ${{ secrets.CACHIX_AUTH_TOKEN }}
cachix_token: ${{ secrets.CACHIX_AUTH_TOKEN }}

- name: Build Lair Keystore for aarch64-apple-darwin
run: |
Expand Down Expand Up @@ -200,7 +200,7 @@ jobs:
- uses: actions/checkout@v4
- uses: ./.github/actions/common-setup
with:
cachix-token: ${{ secrets.CACHIX_AUTH_TOKEN }}
cachix_token: ${{ secrets.CACHIX_AUTH_TOKEN }}

- name: Build Lair Keystore for x86_64-apple-darwin
run: |
Expand Down Expand Up @@ -249,7 +249,7 @@ jobs:
- uses: actions/checkout@v4
- uses: ./.github/actions/common-setup
with:
cachix-token: ${{ secrets.CACHIX_AUTH_TOKEN }}
cachix_token: ${{ secrets.CACHIX_AUTH_TOKEN }}

- name: Bundle Lair Keystore
run: |
Expand Down

0 comments on commit 7df005d

Please sign in to comment.