This commit is contained in:
Daniel Carbone
2023-09-14 17:12:01 -05:00
parent 4fd1c2fa17
commit 8a48eeaec5

View File

@@ -46,7 +46,7 @@ runs:
env:
JQ_VERSION: '${{ inputs.version }}'
# language=sh
run: ${{ github.action_path }/scripts/unixish.sh
run: ${{ github.action_path }}/scripts/unixish.sh
- name: 'Install jq - Unix-ish 1.7'
if: (runner.os == 'Linux' || runner.os == 'macOS') && inputs.version == '1.7' (steps.jq-check-unix.outputs.found == 'false' || inputs.force == 'true')
@@ -54,7 +54,7 @@ runs:
env:
JQ_VERSION: '${{ inputs.version }}'
# language=sh
run: ${{ github.action_path }/scripts/unixish-17.sh
run: ${{ github.action_path }}/scripts/unixish-17.sh
- name: 'Check for jq - Windows-ish'
id: jq-check-windows
@@ -76,13 +76,11 @@ runs:
shell: powershell
env:
JQ_VERSION: '${{ inputs.version }}'
# language=powershell
run: ${{ github.action_path }\scripts\windowsish.ps1
run: ${{ github.action_path }}\scripts\windowsish.ps1
- name: 'Install jq - Windows-ish 1.7'
if: runner.os == 'Windows' && inputs.version == '1.7' && (steps.jq-check-windows.outputs.found == 'false' || inputs.force == 'true')
shell: powershell
env:
JQ_VERSION: '${{ inputs.version }}'
# language=powershell
run: ${{ github.action_path }\scripts\windowsish-17.ps1
run: ${{ github.action_path }}\scripts\windowsish-17.ps1