1 parent 653abc0 commit bc93040Copy full SHA for bc93040
2 files changed
.github/workflows/build_and_package.yml
@@ -223,7 +223,7 @@ jobs:
223
224
release:
225
name: Release project
226
- if: ${{ github.event_name == 'push' && startsWith(github.ref, 'refs/tags/v') }}
+ if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags/v')
227
needs: [build]
228
runs-on: ubuntu-latest
229
environment: release
@@ -254,7 +254,7 @@ jobs:
254
255
256
docker:
257
- needs: build
+ needs: [build, release]
258
if: |
259
always() &&
260
needs.build.result == 'success' &&
doc/changelog.d/92.fixed.md
@@ -0,0 +1 @@
1
+Release issues
0 commit comments