We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4d33bc1 commit 08aee7aCopy full SHA for 08aee7a
.github/workflows/ci.yml
@@ -3,6 +3,7 @@ name: CI/CD Pipeline
3
on:
4
push:
5
branches: [ master, develop ]
6
+ tags: ['v*']
7
pull_request:
8
9
release:
@@ -73,7 +74,7 @@ jobs:
73
74
publish:
75
needs: [test, build]
76
runs-on: ubuntu-latest
- if: github.event_name == 'release' && github.event.action == 'created'
77
+ if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags/v')
78
79
steps:
80
- uses: actions/checkout@v3
0 commit comments