Skip to content

Commit

Permalink
Merge pull request #33 from yqiqichen/main
Browse files Browse the repository at this point in the history
Add publish.yml
  • Loading branch information
gregorgorjanc authored Jan 4, 2024
2 parents fbb6720 + 8c27522 commit 3f23f9b
Showing 1 changed file with 48 additions and 0 deletions.
48 changes: 48 additions & 0 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
name: Publish Python distributions to PyPI
on: push

jobs:
build-n-publish:
name: Build and publish Python distributions to PyPI
runs-on: ubuntu-latest
permissions:
contents: read
id-token: write
environment: release

steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.x"

- name: Install pypa/build
run: >-
python3 -m
pip install
--upgrade
build
- name: Initialize submodules
run: |
git submodule update --init
- name: Build SDist and wheel
run: python3 -m build

- uses: actions/upload-artifact@v3
with:
path: dist/*

- name: Check metadata
run: pipx run twine check dist/*

- uses: actions/download-artifact@v3
with:
name: artifact
path: dist

- name: Publish distribution to PyPI
if: startsWith(github.ref, 'refs/tags')
uses: pypa/gh-action-pypi-publish@release/v1

0 comments on commit 3f23f9b

Please sign in to comment.