Skip to content

Commit

Permalink
Publish automatically using GitHub Actions (#561)
Browse files Browse the repository at this point in the history
* ci(release.yml): auto release
* Update build command

---------

Co-authored-by: Grey Li <withlihui@gmail.com>
  • Loading branch information
uncle-lv and greyli committed Apr 21, 2024
1 parent 3486313 commit c55d993
Showing 1 changed file with 52 additions and 0 deletions.
52 changes: 52 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,52 @@
name: Release
on:
push:
tags:
- '*'
jobs:
build:
runs-on: ubuntu-latest
outputs:
hash: ${{ steps.hash.outputs.hash }}
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: '3.12'
cache: pip
cache-dependency-path: requirements*/*.txt
- run: pip install setuptools wheel build
# Use the commit date instead of the current date during the build.
- run: echo "SOURCE_DATE_EPOCH=$(git log -1 --pretty=%ct)" >> $GITHUB_ENV
- run: python -m build
- uses: actions/upload-artifact@v4
with:
path: ./dist
create-release:
# Upload the sdist, wheels to a GitHub release. They remain
# available as build artifacts for a while as well.
needs: [build]
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- uses: actions/download-artifact@v4
- name: create release
run: >
gh release create --draft --repo ${{ github.repository }}
${{ github.ref_name }}
env:
GH_TOKEN: ${{ github.token }}
publish-pypi:
needs: [build]
# Wait for approval before attempting to upload to PyPI. This allows reviewing the
# files in the draft release.
environment: release
runs-on: ubuntu-latest
permissions:
id-token: write
steps:
- uses: actions/download-artifact@v4
- uses: pypa/gh-action-pypi-publish@release/v1
with:
packages-dir: artifact/

0 comments on commit c55d993

Please sign in to comment.