We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c0c3255 commit 6da1304Copy full SHA for 6da1304
1 file changed
.github/workflows/semantic-release.yml
@@ -35,13 +35,13 @@ jobs:
35
runs-on: ubuntu-latest
36
timeout-minutes: 30
37
needs: semantic
38
- if: needs.semantic.outputs.new_release_published == 'true' && steps.release.outputs.new_release_version != '1.0.0'
+ if: needs.semantic.outputs.new_release_published == 'true' && needs.semantic.outputs.new_release_version != '1.0.0'
39
steps:
40
- name: Checkout
41
uses: actions/checkout@v4
42
with:
43
fetch-depth: 1
44
- - name: Release version ${{ steps.release.outputs.new_release_version }} on ${{ github.ref_name }}
+ - name: Release version ${{ needs.semantic.outputs.new_release_version }} on ${{ github.ref_name }}
45
run: gh workflow run version.yml --raw-field version=$VERSION --ref $BRANCH
46
env:
47
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}
0 commit comments