diff options
author | Théophane Hufschmitt <7226587+thufschmitt@users.noreply.github.com> | 2022-06-10 13:36:30 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-06-10 13:36:30 +0200 |
commit | e557f86490ad1d198c363e3f6ab94acf6c508242 (patch) | |
tree | 4ea630e6119965680670cca0848ca1700cd260d5 | |
parent | 17e54a602ef2a767ae3fe5d8789bc4658f439c37 (diff) | |
parent | 460117a2380c94b4e1ee514eb61e303ee283cf2f (diff) |
Merge pull request #6641 from NixOS/fix-docker-ci-job
Correctly get the nix version in the docker job
-rw-r--r-- | .github/workflows/ci.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index aae5b93e0..fc6531ea5 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -88,7 +88,7 @@ jobs: fetch-depth: 0 - uses: cachix/install-nix-action@v17 - run: echo CACHIX_NAME="$(echo $GITHUB_REPOSITORY-install-tests | tr "[A-Z]/" "[a-z]-")" >> $GITHUB_ENV - - run: echo NIX_VERSION="$(nix-instantiate --eval -E '(import ./default.nix).defaultPackage.${builtins.currentSystem}.version' | tr -d \")" >> $GITHUB_ENV + - run: echo NIX_VERSION="$(nix --experimental-features 'nix-command flakes' eval .\#default.version | tr -d \")" >> $GITHUB_ENV - uses: cachix/cachix-action@v10 if: needs.check_cachix.outputs.secret == 'true' with: |