Fix string interpolation

This commit is contained in:
Luc Perkins 2024-05-16 20:50:21 -03:00
parent 0e85ec287f
commit 6265732741
No known key found for this signature in database
GPG Key ID: 16DB1108FB591835

View File

@ -226,9 +226,10 @@ jobs:
- uses: DeterminateSystems/nix-installer-action@main
with:
source-url: https://github.com/DeterminateSystems/nix-installer/releases/download/v${{ matrix.versions.nix-installer }}/nix-installer-x86_64-linux
- run: |
- name: Compare Nix version with expected version
run: |
NIX_VERSION_OUTPUT=$(nix --version)
NIX_VERSION=$(echo "{NIX_VERSION}" | awk '{print $NF}')
NIX_VERSION=$(echo "${NIX_VERSION}" | awk '{print $NF}')
EXPECTED_OUTPUT="nix (Nix) ${{ matrix.versions.nix }}"
if [ "${NIX_VERSION_OUTPUT}" != "${EXPECTED_OUTPUT}" ]; then
echo "Nix version ${NIX_VERSION} didn't match expected version ${{ matrix.versions.nix }}"