We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1e35f2a commit a5ba9cbCopy full SHA for a5ba9cb
.github/workflows/release.yml
@@ -113,7 +113,7 @@ jobs:
113
114
create_changelog_and_release:
115
runs-on: ubuntu-latest
116
- needs: build_and_test # make sure that tests & build work correctly
+ needs: [extract_version, build_and_test] # make sure that tests & build work correctly
117
steps:
118
- name: Checkout Repo
119
uses: actions/checkout@v4
@@ -130,6 +130,10 @@ jobs:
130
env:
131
GITHUB_REPO: ${{ github.repository }}
132
133
+ - name: Ensure tag matches
134
+ if: ${{ steps.create_changelog.outputs.version }} != ${{ needs.extract_version.outputs.version }}
135
+ run: exit 1
136
+
137
- name: 👇 Download Artifacts
138
uses: actions/download-artifact@v4
139
id: download
0 commit comments