We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0af242d commit 8509b2eCopy full SHA for 8509b2e
1 file changed
.github/workflows/workflow.yml
@@ -3,6 +3,7 @@ name: CI/CD Pipeline
3
on:
4
push:
5
branches: [main, master]
6
+ tags: ['v*']
7
8
9
jobs:
@@ -79,7 +80,7 @@ jobs:
79
80
name: Create Release
81
runs-on: ubuntu-latest
82
needs: build
- #if: startsWith(github.ref, 'refs/tags/v')
83
+ if: startsWith(github.ref, 'refs/tags/v')
84
permissions:
85
contents: write
86
steps:
@@ -107,7 +108,7 @@ jobs:
107
108
name: Publish to PyPI
109
110
needs: release
111
112
environment: release
113
114
id-token: write
0 commit comments