Skip to content

Commit 6da1304

Browse files
committed
Fix semantic-release step references
1 parent c0c3255 commit 6da1304

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/semantic-release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,13 +35,13 @@ jobs:
3535
runs-on: ubuntu-latest
3636
timeout-minutes: 30
3737
needs: semantic
38-
if: needs.semantic.outputs.new_release_published == 'true' && steps.release.outputs.new_release_version != '1.0.0'
38+
if: needs.semantic.outputs.new_release_published == 'true' && needs.semantic.outputs.new_release_version != '1.0.0'
3939
steps:
4040
- name: Checkout
4141
uses: actions/checkout@v4
4242
with:
4343
fetch-depth: 1
44-
- name: Release version ${{ steps.release.outputs.new_release_version }} on ${{ github.ref_name }}
44+
- name: Release version ${{ needs.semantic.outputs.new_release_version }} on ${{ github.ref_name }}
4545
run: gh workflow run version.yml --raw-field version=$VERSION --ref $BRANCH
4646
env:
4747
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}

0 commit comments

Comments
 (0)