aboutsummaryrefslogtreecommitdiffstats
path: root/.github/actions/download-qtc/action.yml
blob: 3e201670bc58d97a189b13b3a58e61baac4eda4b (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.13.3'
runs:
  using: "composite"
  steps:
    - name: Install Qt Creator
      run: |
        QTC_DIR=$(./scripts/install-qt.sh -d $HOME/Qt --version ${{ inputs.version }} qtcreator)
        (cygpath -w ${QTC_DIR} 2>/dev/null || echo ${QTC_DIR}) >> ${GITHUB_PATH}
      shell: bash