PyEBSDIndex v0.3.6 #18
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
# This workflows runs when a tagged release is created or it is triggered manually. | |
# | |
# For more information see: | |
# - Python docs: https://packaging.python.org/en/latest/guides/publishing-package-distribution-releases-using-github-actions-ci-cd-workflows | |
# - GitHub action: https://github.com/marketplace/actions/pypi-publish | |
# - GitHub docs: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-python#publishing-to-package-registries | |
# | |
# The source distribution (sdist) is built with the `build` package | |
# (https://pypa-build.readthedocs.io/en/stable/index.html). | |
# | |
# The sdist is uploaded to: | |
# - TestPyPI whenever the workflow is run | |
# - PyPI when the current commit is tagged | |
# | |
# Trusted publishing to PyPI within GitHub without using an API token: https://blog.pypi.org/posts/2023-04-20-introducing-trusted-publishers | |
name: Upload package to PyPI | |
on: | |
release: | |
types: [published] | |
workflow_dispatch: | |
workflow: "*" | |
jobs: | |
deploy: | |
runs-on: ubuntu-latest | |
permissions: | |
# IMPORTANT: this permission is mandatory for trusted publishing: | |
id-token: write | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: '3.x' | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install build | |
- name: Build package | |
run: | | |
python -m build | |
- name: Publish package to TestPyPI | |
uses: pypa/gh-action-pypi-publish@release/v1 | |
continue-on-error: true | |
with: | |
repository_url: https://test.pypi.org/legacy/ | |
- name: Publish package to PyPI | |
uses: pypa/gh-action-pypi-publish@release/v1 |