Skip to content

Commit 9e67905

Browse files
committed
Push tag manually
Also skip publishing the package, because at the previous workflow execution we had publish the PyPI package already.
1 parent 5d633d5 commit 9e67905

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

.github/workflows/deploy.yml

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -31,9 +31,10 @@ jobs:
3131
name: Packages
3232
path: dist
3333

34-
- name: Publish package to PyPI
35-
uses: pypa/[email protected]
34+
#- name: Publish package to PyPI
35+
# uses: pypa/[email protected]
3636

37-
- uses: actions-ecosystem/action-push-tag@v1
38-
with:
39-
tag: ${{ github.event.inputs.version }}
37+
- name: Push tag
38+
run: |
39+
git tag ${{ github.event.inputs.version }} ${{ github.sha }}
40+
git push origin ${{ github.event.inputs.version }}

0 commit comments

Comments
 (0)