Skip to content

Commit c3fcb2c

Browse files
committed
Add GitHub actions job to generate a release
1 parent 26b04c8 commit c3fcb2c

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

.github/workflows/build.yml

+14
Original file line numberDiff line numberDiff line change
@@ -31,3 +31,17 @@ jobs:
3131
with:
3232
name: Python ${{ matrix.python-version }} (${{ matrix.arch }})
3333
path: python*.tar.gz
34+
release:
35+
runs-on: ubuntu-latest
36+
needs: build
37+
steps:
38+
- name: Download artifacts
39+
uses: actions/download-artifact@v2
40+
- name: Upload binaries to release
41+
uses: svenstaro/upload-release-action@v2
42+
with:
43+
repo_token: ${{ secrets.GITHUB_TOKEN }}
44+
file: '*/python*.tar.gz'
45+
tag: ${{ github.ref }}
46+
overwrite: true
47+
file_glob: true

0 commit comments

Comments
 (0)