Skip to content

Commit 1a91cda

Browse files
fix(workflow): use correct input variable for release-create step (#648)
The release-create step was using an incorrect variable name (`github.events.input.tag`), which resulted in the `just release-create` command being called without the required tag argument. This commit updates the workflow to use the correct variable (`github.event.inputs.tag`), ensuring the tag is properly passed to the command. - https://github.com/loong64/python-build-standalone/actions/runs/15469452121/job/43549720438 Signed-off-by: 吴小白 <[email protected]>
1 parent 5276f3b commit 1a91cda

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ jobs:
6666
# Create a GitHub release.
6767
- name: Create GitHub Release
6868
if: ${{ github.event.inputs.dry-run == 'false' }}
69-
run: just release-create ${{ github.events.input.tag }}
69+
run: just release-create ${{ github.event.inputs.tag }}
7070

7171
# Uploading the relevant artifact to the GitHub release.
7272
- run: just release-run ${{ secrets.GITHUB_TOKEN }} ${{ github.event.inputs.sha }} ${{ github.event.inputs.tag }}

0 commit comments

Comments
 (0)