mirror of
https://github.com/lucaspalomodevelop/meshlab.git
synced 2026-03-13 00:07:24 +00:00
fix composite action if statements
This commit is contained in:
parent
e3741b217e
commit
fdbaea720b
6
.github/actions/0_setup/action.yml
vendored
6
.github/actions/0_setup/action.yml
vendored
@ -22,18 +22,18 @@ runs:
|
||||
run: |
|
||||
echo "Install Qt Action: ${{ inputs.use-jurpel-qt-action }}"
|
||||
- name: Install Qt
|
||||
if: ${{ inputs.use-jurpel-qt-action }}
|
||||
if: inputs.use-jurpel-qt-action == 'true'
|
||||
uses: jurplel/install-qt-action@v3
|
||||
with:
|
||||
cache: true
|
||||
version: ${{ inputs.qt-version }}
|
||||
- name: Install dependencies
|
||||
if: ${{ inputs.use-jurpel-qt-action }}
|
||||
if: inputs.use-jurpel-qt-action == 'true'
|
||||
shell: bash
|
||||
run: |
|
||||
bash scripts/${{ runner.os }}/0_setup_env.sh --dont_install_qt
|
||||
- name: Install dependencies
|
||||
if: ${{ !inputs.use-jurpel-qt-action }}
|
||||
if: inputs.use-jurpel-qt-action == 'false'
|
||||
shell: bash
|
||||
run: |
|
||||
bash scripts/${{ runner.os }}/0_setup_env.sh
|
||||
Loading…
x
Reference in New Issue
Block a user