mirror of
https://github.com/saltstack/salt-bootstrap.git
synced 2025-04-16 09:40:21 +00:00
Fixed using ' in conditional github actions
This commit is contained in:
parent
03fd45ba97
commit
55f219224c
1 changed files with 2 additions and 2 deletions
4
.github/workflows/test-linux.yml
vendored
4
.github/workflows/test-linux.yml
vendored
|
@ -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 }}"
|
||||
|
|
Loading…
Add table
Reference in a new issue