Merge branch 'master' into release_0 #13
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build and Publish Extension | ||
on: | ||
push: | ||
tags: 'v*' | ||
jobs: | ||
build: | ||
name: Build and Publish to PyPI | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: ./.github/actions/setup | ||
- uses: ./.github/actions/test | ||
- uses: ./.github/actions/build-ext | ||
- uses: ./.github/actions/post-test | ||
- name: Build sdist | ||
run: | | ||
pip install build | ||
python -m build --sdist | ||
- name: Publish distribution to PyPI | ||
uses: pypa/gh-action-pypi-publish@release/v1 | ||
permissions: | ||
Check failure on line 23 in .github/workflows/build-and-publish-tagged.yml GitHub Actions / Build and Publish ExtensionInvalid workflow file
|
||
id-token: write | ||
with: | ||
skip_existing: true |