0.10.0 #2
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: Make Release | |
on: | |
release: | |
types: | |
- published | |
jobs: | |
build: | |
name: Build Release Packages | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python | |
id: setup | |
uses: actions/setup-python@v5 | |
with: | |
python-version: 3.x | |
- name: Install build tools | |
run: | | |
python -m pip install --upgrade pip | |
python -m pip install --upgrade build setuptools setuptools_scm wheel | |
- name: Build packages | |
run: python -m build | |
- name: Save built packages as artifact | |
uses: actions/upload-artifact@v4 | |
with: | |
name: packages-${{ runner.os }}-${{ steps.setup.outputs.python-version }} | |
path: dist/ | |
if-no-files-found: error | |
retention-days: 5 | |
publish: | |
name: Publish to PyPI | |
needs: build | |
environment: | |
name: PyPI | |
url: https://pypi.org/project/siphon/ | |
permissions: | |
id-token: write # IMPORTANT: this permission is mandatory for trusted publishing | |
runs-on: ubuntu-latest | |
steps: | |
- name: Download packages | |
uses: actions/download-artifact@v4 | |
- name: Consolidate packages for upload | |
run: | | |
mkdir dist | |
cp packages-*/* dist/ | |
- name: Publish Package | |
uses: pypa/gh-action-pypi-publish@v1.12.2 |