Skip to content

Commit adebacf

Browse files
frostebiteclaude
andauthored
fix: add missing expression syntax in Windows Hub workflow_dispatch (#283)
The Setup Build Parameters step was outputting literal strings like {{ github.event.inputs.jobId }} instead of evaluating them as expressions. This broke manual workflow_dispatch triggers — jobId, repoVersion values were all wrong, causing incorrect tags and backend reports. Co-authored-by: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent fdb6473 commit adebacf

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

.github/workflows/new-windows-hub-image-requested.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -51,10 +51,10 @@ jobs:
5151
if ("${{ github.event.inputs.jobId }}")
5252
{
5353
# Workflow Dispatch
54-
echo "jobId={{ github.event.inputs.jobId }}" >> $Env:GITHUB_OUTPUT
55-
echo "repoVersionFull={{ github.event.inputs.repoVersionFull }}" >> $Env:GITHUB_OUTPUT
56-
echo "repoVersionMinor={{ github.event.inputs.repoVersionMinor }}" >> $Env:GITHUB_OUTPUT
57-
echo "repoVersionMajor={{ github.event.inputs.repoVersionMajor }}" >> $Env:GITHUB_OUTPUT
54+
echo "jobId=${{ github.event.inputs.jobId }}" >> $Env:GITHUB_OUTPUT
55+
echo "repoVersionFull=${{ github.event.inputs.repoVersionFull }}" >> $Env:GITHUB_OUTPUT
56+
echo "repoVersionMinor=${{ github.event.inputs.repoVersionMinor }}" >> $Env:GITHUB_OUTPUT
57+
echo "repoVersionMajor=${{ github.event.inputs.repoVersionMajor }}" >> $Env:GITHUB_OUTPUT
5858
} else
5959
{
6060
# Repo Dispatch

0 commit comments

Comments
 (0)