We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 541824b commit 93de47aCopy full SHA for 93de47a
.github/workflows/ci-release.yml
@@ -1,18 +1,18 @@
1
name: Continuous Integration (Release)
2
on:
3
push:
4
- # tags:
5
- # - "v[0-9]+.[0-9]+.[0-9]+*"
+ tags:
+ - "v[0-9]+.[0-9]+.[0-9]+*"
6
7
jobs:
8
# run default ci checks against released version
9
- #default-checks:
10
- # uses: ./.github/workflows/ci-default.yml
+ default-checks:
+ uses: ./.github/workflows/ci-default.yml
11
12
# get the version tag that triggered this workflow
13
get-version-tag:
14
# prep version release only if all checks pass
15
- # needs: default-checks
+ needs: default-checks
16
runs-on: ubuntu-latest
17
outputs:
18
git-tag: ${{ steps.git-tag.outputs.tag }}
0 commit comments