Skip to content

Commit

Permalink
Add GitHub actions job to generate a release
Browse files Browse the repository at this point in the history
  • Loading branch information
quantum5 committed Oct 5, 2020
1 parent 26b04c8 commit c3fcb2c
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,3 +31,17 @@ jobs:
with:
name: Python ${{ matrix.python-version }} (${{ matrix.arch }})
path: python*.tar.gz
release:
runs-on: ubuntu-latest
needs: build
steps:
- name: Download artifacts
uses: actions/download-artifact@v2
- name: Upload binaries to release
uses: svenstaro/upload-release-action@v2
with:
repo_token: ${{ secrets.GITHUB_TOKEN }}
file: '*/python*.tar.gz'
tag: ${{ github.ref }}
overwrite: true
file_glob: true

0 comments on commit c3fcb2c

Please sign in to comment.