diff options
| author | seth <[email protected]> | 2023-12-30 13:55:08 -0500 |
|---|---|---|
| committer | seth <[email protected]> | 2023-12-30 13:55:08 -0500 |
| commit | fa0cf5d4267d704e69f09fcabd2d27c34bfd388e (patch) | |
| tree | d238501749f6f1d71756256063b85cfd62cfab69 /.github/workflows/ci.yaml | |
| parent | f8ced3f27f85ea93b2d85ad8a6b2cefbeaea7a38 (diff) | |
ci: fix aarch64-linux builds
Diffstat (limited to '.github/workflows/ci.yaml')
| -rw-r--r-- | .github/workflows/ci.yaml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index cd5c05e..5661f18 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -32,11 +32,11 @@ jobs: platforms: "arm64" - name: Install Nix - if: matrix.system != 'aarch64' + if: matrix.system != 'aarch64-linux' uses: DeterminateSystems/nix-installer-action@v9 - name: Install Nix (with aarch64) - if: matrix.system == 'aarch64' + if: matrix.system == 'aarch64-linux' uses: DeterminateSystems/nix-installer-action@v9 with: extra-conf: "extra-platforms = aarch64-linux arm-linux" |
