We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4493907 commit 4f45be5Copy full SHA for 4f45be5
2 files changed
.github/workflows/docker-publish.yml
@@ -1,4 +1,4 @@
1
-name: Docker
+name: Upload Docker Image
2
3
# This workflow uses actions that are not certified by GitHub.
4
# They are provided by a third-party and are governed by
.github/workflows/python-publish.yml
@@ -9,8 +9,9 @@
9
name: Upload Python Package
10
11
on:
12
- release:
13
- types: [published]
+ push:
+ # Publish semver tags as releases.
14
+ tags: [ 'v*.*.*' ]
15
16
permissions:
17
contents: read
@@ -34,6 +35,3 @@ jobs:
34
35
run: python -m build
36
- name: Publish package
37
uses: pypa/gh-action-pypi-publish@27b31702a0e7fc50959f5ad993c78deac1bdfc29
- with:
38
- user: __token__
39
- password: ${{ secrets.PYPI_API_TOKEN }}
0 commit comments