Skip to content

Commit

Permalink
Add release.yml for building, uploading and creating release
Browse files Browse the repository at this point in the history
  • Loading branch information
geertjanvdenbosch committed Aug 30, 2024
1 parent b931fe8 commit 078f2f2
Showing 1 changed file with 38 additions and 2 deletions.
40 changes: 38 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,42 @@ jobs:
name: Release to PyPI
needs: build
runs-on: ubuntu-latest
environment:
name: pypi
url: https://pypi.org/project/${{ github.repository }}
permissions:
id-token: write
steps:
- name: Download artifacts
uses: actions/download-artifact@v4
with:
name: packages-${{ github.ref_name }}
path: dist/
- name: Publish package distributions to PyPI
uses: pypa/gh-action-pypi-publish@release/v1
with:
password: ${{ secrets.PYPI_API_TOKEN }}

github-release:
name: Create release on Github
needs: build
runs-on: ubuntu-latest
steps:
- name: Get packages
uses: actions/download-artifact@v3
with:
name: packages-${{ github.ref_name }}
path: dist/

- name: Create new release
continue-on-error: true
uses: softprops/action-gh-release@v2
with:
token: ${{ secrets.GITHUB_TOKEN }}
body: |
What's changed:
* TODO
# - name: Publish package distributions to PyPI
# uses: pypa/gh-action-pypi-publish@release/v1
Get it [here](https://pypi.org/project/${{ github.repository }}/${{ github.ref_name }})
draft: true
files: dist/*

0 comments on commit 078f2f2

Please sign in to comment.