You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
release-vfsforgit: fix heredoc and add workflow_dispatch trigger (#884)
This fixes the failure in
https://github.com/microsoft/git/actions/runs/24558034660/job/71799344023
and adds a `workflow_dispatch` trigger so the workflow can be re-run
manually without creating a new release.
**Commit 1**: Replace the broken heredoc (`cat <<EOF`) with a simple
quoted string. The heredoc failed because the YAML `run: |` block
preserves indentation, so the closing `EOF` delimiter was never at
column 0.
**Commit 2**: Add `workflow_dispatch` with a `tag` input (same pattern
as the winget workflow), and consolidate the tag into a single
`TAG_NAME` env var set at workflow level.
0 commit comments