aboutsummaryrefslogtreecommitdiffstats
path: root/.github/actions/download-qtc/action.yml
blob: ba5486298e6dec466f76ae7c8b9a780309d08433 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
name: 'Download Qt Creator'
description: 'Downloads Qt Creator'
inputs:
  version:
    description: 'Qt Creator version'
    required: false
    default: '4.12.4'
runs:
  using: "composite"
  steps:
    - name: Install Qt Creator
      run: |
        export QTC_DIR=$(./scripts/install-qt.sh -d $HOME/Qt --version ${{ inputs.version }} qtcreator)
        echo ::add-path::$QTC_DIR
      shell: bash