From 55f219224c12982e0d7d5fbe64a5da0f4a61644d Mon Sep 17 00:00:00 2001 From: David Murphy Date: Mon, 11 Nov 2024 13:57:14 -0700 Subject: [PATCH] Fixed using ' in conditional github actions --- .github/workflows/test-linux.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test-linux.yml b/.github/workflows/test-linux.yml index 3706030..f3ba7af 100644 --- a/.github/workflows/test-linux.yml +++ b/.github/workflows/test-linux.yml @@ -46,7 +46,7 @@ jobs: - uses: actions/checkout@v4 - name: Install Python Dependencies with pip breakage - if: ${{ ( inputs.distro-slug == "debian-11" ) || ( inputs.distro-slug == "debian-12" ) || ( inputs.distro-slug == "debian-13" ) || ( inputs.distro-slug == "ubuntu-2404" ) }} + if: ${{ ( inputs.distro-slug == 'debian-11' ) || ( inputs.distro-slug == 'debian-12' ) || ( inputs.distro-slug == 'debian-13' ) || ( inputs.distro-slug == 'ubuntu-2404' ) }} run: | echo "DGM pip test for distro-slug ${{ inputs.distro-slug }}" echo "DGM doing break-system-packages for distro-slug ${{ inputs.distro-slug }}" @@ -57,7 +57,7 @@ jobs: fi - name: Install Python Dependencies without pip breakage - if: ${{ ( inputs.distro-slug != "debian-11" ) && ( inputs.distro-slug != "debian-12" ) && ( inputs.distro-slug != "debian-13" ) && ( inputs.distro-slug != "ubuntu-2404" ) }} + if: ${{ ( inputs.distro-slug != 'debian-11' ) && ( inputs.distro-slug != 'debian-12' ) && ( inputs.distro-slug != 'debian-13' ) && ( inputs.distro-slug != 'ubuntu-2404' ) }} run: | echo "DGM pip test for distro-slug ${{ inputs.distro-slug }}" echo "DGM plain pip for distro-slug ${{ inputs.distro-slug }}"