This action allows you to install the Qt Creator development packages.
steps:
- id: qtc-extract
uses: qt-creator/[email protected]
with:
version: 17.0.0
You can get the path to the extracted files via the outputs:
steps:
- name: Print outputs
run: |
echo "Path: ${{ steps.qtc-extract.outputs.path }}"
echo "Path, always with /: ${{ steps.qtc-extract.outputs.path-with-slashes }}"