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 34f4b9e commit e79d90aCopy full SHA for e79d90a
.github/workflows/release.yml
@@ -5,6 +5,8 @@ name: release
5
on:
6
release:
7
types: [ published ]
8
+ # Allows you to run this workflow manually from the Actions tab
9
+ workflow_dispatch:
10
11
jobs:
12
build:
@@ -40,6 +42,7 @@ jobs:
40
42
runs-on: ubuntu-latest
41
43
needs: build
44
permissions:
45
+ contents: write
46
id-token: write
47
48
steps:
@@ -49,6 +52,12 @@ jobs:
49
52
name: dist
50
53
path: dist
51
54
55
+ - name: Upload binaries to release
56
+ uses: shogo82148/actions-upload-release-asset@v1
57
+ with:
58
+ upload_url: ${{ github.event.release.upload_url }}
59
+ asset_path: dist/*
60
+
61
- name: Publish package distributions to TestPyPI
62
uses: pypa/gh-action-pypi-publish@release/v1
63
################################
0 commit comments