We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 44aa189 commit 0c1b8d7Copy full SHA for 0c1b8d7
1 file changed
.github/workflows/Publish.Pypi.yml
@@ -4,6 +4,7 @@ on:
4
types:
5
- created
6
- edited
7
+ - published
8
jobs:
9
main:
10
runs-on: ubuntu-latest
@@ -21,10 +22,8 @@ jobs:
21
22
- uses: docker://pandoc/core
23
with:
24
args: "-f docbook README.xml -t markdown_strict -o README.md"
- - name: Get latest tag
25
- uses: WyriHaximus/github-action-get-previous-tag@v1
26
- id: GetLatestTag
27
- - run: echo ${{ steps.GetLatestTag.outputs.tag }} > VERSION
+ - name: Get VERSION
+ run: echo ${{ env.GITHUB_REF }} > VERSION
28
- name: Build
29
run: python -m build
30
- name: Publish
0 commit comments