ci: pin Qt install dir for act-runner (runner.temp comes through empty)
Some checks failed
CI / Quality (push) Failing after 3m14s
Release / Linux AppImage (push) Has been cancelled

install-qt-action defaults `dir:` to `${{ runner.temp }}` if unset.
GitHub-hosted runners populate runner.temp; Gitea/Forgejo's act-runner
leaves it as the empty string. The action then rejects the empty path
with `TypeError: "dir" input may not be empty`.

Hardcoding `dir: ${{ github.workspace }}/qt` works on both — workspace
is always populated and writable, and the path is inside the job's
working tree so it's auto-cleaned with the workspace.

Same change in ci.yml and release.yml.

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This commit is contained in:
2026-05-03 10:03:31 +02:00
parent eac914d2d4
commit badb5056c9
2 changed files with 2 additions and 0 deletions

View File

@@ -55,6 +55,7 @@ jobs:
with:
version: '6.5.*'
modules: 'qtquickcontrols2'
dir: ${{ github.workspace }}/qt
cache: true
setup-python: false