Skip to content

Commit

Permalink
Fix release_output job on automated release process (#65)
Browse files Browse the repository at this point in the history
  • Loading branch information
fbenevides authored Aug 23, 2022
1 parent f407fe0 commit 7252afb
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,14 @@ jobs:
echo "Skipping because release tag already exists"
exit 1
fi
- name: Output
id: release_output
if: ${{ steps.prepare_tag.outcome == 'success' }}
run: |
echo "::set-output name=tag::${{ env.TAG }}"
outputs:
tag: ${{ steps.release_output.outputs.tag }}
publish:
runs-on: ubuntu-latest
needs: check-release-tag
Expand Down

0 comments on commit 7252afb

Please sign in to comment.