Skip to content

Commit b8b35ed

Browse files
Copilotpelikhan
andauthored
Fix template injection in sync-actions Create release step (#48)
* Initial plan * Fix template injection in Create release step (alert #31) Agent-Logs-Url: https://github.com/github/gh-aw-actions/sessions/342cf294-3bde-4814-9102-f7d2ebd8a42d Co-authored-by: pelikhan <4175913+pelikhan@users.noreply.github.com> --------- Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> Co-authored-by: pelikhan <4175913+pelikhan@users.noreply.github.com>
1 parent 18f7fa4 commit b8b35ed

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

.github/workflows/sync-actions.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -366,7 +366,7 @@ jobs:
366366
if: steps.resolve-ref.outputs.should_create_tag == 'true'
367367
run: |
368368
echo "::group::Creating Release"
369-
TAG="${{ steps.resolve-ref.outputs.tag_ref }}"
369+
TAG="$TAG_REF"
370370
echo "Creating GitHub release for tag: $TAG"
371371
gh release create "$TAG" \
372372
--repo "${{ github.repository }}" \
@@ -376,3 +376,4 @@ jobs:
376376
echo "::endgroup::"
377377
env:
378378
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
379+
TAG_REF: ${{ steps.resolve-ref.outputs.tag_ref }}

0 commit comments

Comments
 (0)