Bumps [dawidd6/action-download-artifact](https://github.com/dawidd6/action-download-artifact) from 20 to 21.
- [Release notes](https://github.com/dawidd6/action-download-artifact/releases)
- [Commits](8305c0f106...b6e2e70617)
---
updated-dependencies:
- dependency-name: dawidd6/action-download-artifact
dependency-version: '21'
dependency-type: direct:production
update-type: version-update:semver-major
...
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
61 lines
2.3 KiB
YAML
61 lines
2.3 KiB
YAML
name: Publish to PyPI
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
inputs:
|
|
run_id:
|
|
description: The run of wheel-builder to use for finding artifacts.
|
|
required: true
|
|
environment:
|
|
description: Which PyPI environment to upload to
|
|
required: true
|
|
type: choice
|
|
options: ["testpypi", "pypi"]
|
|
workflow_run:
|
|
workflows: ["Wheel Builder"]
|
|
types: [completed]
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
jobs:
|
|
publish:
|
|
runs-on: ubuntu-latest
|
|
# We're not actually verifying that the triggering push event was for a
|
|
# tag, because github doesn't expose enough information to do so.
|
|
# wheel-builder.yml currently only has push events for tags.
|
|
if: github.event_name == 'workflow_dispatch' || (github.event.workflow_run.event == 'push' && github.event.workflow_run.conclusion == 'success')
|
|
permissions:
|
|
id-token: "write"
|
|
attestations: "write"
|
|
steps:
|
|
- run: echo "$EVENT_CONTEXT"
|
|
env:
|
|
EVENT_CONTEXT: ${{ toJson(github.event) }}
|
|
|
|
- run: |
|
|
echo "PYPI_URL=https://upload.pypi.org/legacy/" >> $GITHUB_ENV
|
|
if: github.event_name == 'workflow_run' || (github.event_name == 'workflow_dispatch' && github.event.inputs.environment == 'pypi')
|
|
- run: |
|
|
echo "PYPI_URL=https://test.pypi.org/legacy/" >> $GITHUB_ENV
|
|
if: github.event_name == 'workflow_dispatch' && github.event.inputs.environment == 'testpypi'
|
|
|
|
- uses: dawidd6/action-download-artifact@b6e2e70617bc3265edd6dab6c906732b2f1ae151 # v21
|
|
with:
|
|
path: tmpdist/
|
|
run_id: ${{ github.event.inputs.run_id || github.event.workflow_run.id }}
|
|
- run: mkdir dist/
|
|
- run: |
|
|
find tmpdist/ -type f -name 'bcrypt*' -exec mv {} dist/ \;
|
|
|
|
- name: Publish package distributions to PyPI
|
|
uses: pypa/gh-action-pypi-publish@cef221092ed1bacb1cc03d23a2d87d1d172e277b # v1.14.0
|
|
with:
|
|
repository-url: ${{ env.PYPI_URL }}
|
|
skip-existing: true
|
|
# Do not perform attestation for things for TestPyPI. This is
|
|
# because there's nothing that would prevent a malicious PyPI from
|
|
# serving a signed TestPyPI asset in place of a release intended for
|
|
# PyPI.
|
|
attestations: ${{ env.PYPI_URL == 'https://upload.pypi.org/legacy/' }}
|