Skip to content

Commit

Permalink
fix: psr outputs
Browse files Browse the repository at this point in the history
  • Loading branch information
tcjennings committed Jan 10, 2025
1 parent 2858347 commit 36b54b9
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -56,12 +56,16 @@ jobs:
changelog: false
vcs_release: false

- name: Check outputs
run: |
echo "${{ steps.release.outputs }}"
# Pushing the tag will not trigger any related events, so we have to use
# workflow_dispatch to affect the tag-related build.
- name: Trigger Build Workflow
uses: actions/github-script@v7
if: >-
steps.release.outputs.released == true
steps.release.outputs.released == "true"
env:
TAG_REF: ${{ steps.release.outputs.tag }}
with:
Expand Down

0 comments on commit 36b54b9

Please sign in to comment.