Merge pull request #169 from MAIF/add_pypi_to_ci #1
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: Publish to Pypi | ||
on: | ||
push: | ||
tags: | ||
- "v[0-9]+.[0-9]+.[0-9]+" # regex to match semantic versioning tags | ||
jobs: | ||
tests: | ||
uses: ./.github/workflows/main.yml | ||
Check failure on line 9 in .github/workflows/publish.yaml GitHub Actions / .github/workflows/publish.yamlInvalid workflow file
|
||
publish: | ||
name: publish | ||
needs: [main] # require main to pass before publish runs | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout source | ||
uses: actions/checkout@v3 | ||
- name: Set up Python 3.10 | ||
uses: actions/setup-python@v4 | ||
with: | ||
python-version: 3.10 | ||
- name: Build package | ||
run: | | ||
python -m pip install -U pip build | ||
python -m build | ||
- name: Publish | ||
uses: pypa/[email protected] | ||
with: | ||
user: __token__ | ||
password: ${{ secrets.PYPI_API_TOKEN }} |