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 c4af602 commit ed886c2Copy full SHA for ed886c2
.github/workflows/ci-cd.yml
@@ -2,7 +2,6 @@ name: CI/CD
2
3
on:
4
push:
5
- tags: [ 'v*' ]
6
pull_request:
7
8
env:
@@ -62,7 +61,7 @@ jobs:
62
61
name: GHCR Release
63
runs-on: ubuntu-latest
64
needs: test-build
65
- if: github.ref == 'refs/heads/main' || startsWith(github.ref, 'refs/tags/')
+ if: github.ref == 'refs/heads/main' || startsWith(github.ref, 'refs/tags/v')
66
permissions:
67
contents: read
68
packages: write
@@ -108,7 +107,7 @@ jobs:
108
107
name: PyPI Release
109
110
111
- if: startsWith(github.ref, 'refs/tags/')
+ if: startsWith(github.ref, 'refs/tags/v')
112
113
contents: write
114
id-token: write
0 commit comments