We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 707507b commit be03fbaCopy full SHA for be03fba
.github/workflows/build-release.yml
@@ -3,7 +3,8 @@ name: Build Release
3
4
on:
5
push:
6
- tags: ${{ variables.BUILD_TAGS }}
+ tags: v[1-9]+.[0-9]+.*
7
+
8
9
jobs:
10
test:
@@ -24,8 +25,8 @@ jobs:
24
25
26
- name: Show the discovered version
27
run: |
- if [[ $RELEASE_VERSION = "refs/heads/master" ]]; then
28
- echo "RELEASE_VERSION=testing-RC1" >> $GITHUB_ENV
+ if [[ ${{ secrets.BUILD_TEST }} ]]; then
29
+ echo "RELEASE_VERSION=build-testing-RC1" >> $GITHUB_ENV
30
fi
31
echo \$RELEASE_VERSION = $RELEASE_VERSION
32
echo \$\{\{ env.RELEASE_VERSION \}\} = ${{ env.RELEASE_VERSION }}
0 commit comments