Merge pull request #41 from elcaminoreal/fix-group #3
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: Release | |
on: | |
push: | |
branches: | |
- master | |
permissions: # added using https://github.com/step-security/secure-workflows | |
contents: read | |
jobs: | |
build: | |
name: Build | |
runs-on: ubuntu-latest | |
permissions: | |
id-token: write | |
steps: | |
- uses: actions/checkout@8e5e7e5ab8b370d6c329ec480221332ada57f0ab # v3.5.2 | |
- uses: actions/setup-python@57ded4d7d5e986d7296eab16560982c6dd7c923b | |
with: | |
python-version: "3.x" | |
cache: "pip" | |
cache-dependency-path: pyproject.toml | |
- name: deps | |
run: python -m pip install -U build | |
- name: env | |
run: env | |
- name: build | |
run: python -m build | |
- name: Upload built packages | |
uses: actions/upload-artifact@0b7f8abb1508181956e8e162db84b466c27e18ce # v3.1.2 | |
with: | |
name: built-packages | |
path: ./dist/ | |
if-no-files-found: warn | |
release-pypi: | |
needs: build | |
runs-on: ubuntu-latest | |
permissions: | |
# Used to authenticate to PyPI via OIDC. | |
id-token: write | |
steps: | |
- name: Download artifacts directories # goes to current working directory | |
uses: actions/download-artifact@9bc31d5ccc31df68ecc42ccf4149144866c47d8a # v3.0.2 | |
- name: publish | |
uses: pypa/gh-action-pypi-publish@0bf742be3ebe032c25dd15117957dc15d0cfc38d | |
with: | |
packages_dir: built-packages/ |