We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f16757a commit 3fee28cCopy full SHA for 3fee28c
.github/workflows/build-test-publish.yml
@@ -4,6 +4,8 @@ on:
4
push:
5
branches:
6
- "**"
7
+ tags:
8
+ - "**"
9
10
env:
11
DOCKER_ENV_FILE: ".github/workflows/docker.env"
@@ -63,7 +65,8 @@ jobs:
63
65
run: docker rm builder
64
66
67
publish:
- if: github.event_name == 'tag' || (github.event_name == 'push' && (github.ref == 'refs/heads/main' || github.ref == 'refs/heads/dev'))
68
+ if: startsWith(github.ref, 'refs/tags/v') || (github.event_name == 'push' && (github.ref == 'refs/heads/main' || github.ref == 'refs/heads/dev'))
69
+
70
needs:
71
- build-test
72
runs-on: ubuntu-latest
0 commit comments