mirror of
https://github.com/cloudflare/cloudflare-python.git
synced 2026-01-16 23:01:03 +00:00
31 lines
867 B
YAML
31 lines
867 B
YAML
# This workflow is triggered when a GitHub release is created.
|
|
# It can also be run manually to re-publish to PyPI in case it failed for some reason.
|
|
# You can run this workflow by navigating to https://www.github.com/cloudflare/cloudflare-python/actions/workflows/publish-pypi.yml
|
|
name: Publish PyPI
|
|
on:
|
|
workflow_dispatch:
|
|
|
|
release:
|
|
types: [published]
|
|
|
|
jobs:
|
|
publish:
|
|
name: publish
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
|
|
- name: Install Rye
|
|
run: |
|
|
curl -sSf https://rye-up.com/get | bash
|
|
echo "$HOME/.rye/shims" >> $GITHUB_PATH
|
|
env:
|
|
RYE_VERSION: 0.15.2
|
|
RYE_INSTALL_OPTION: "--yes"
|
|
|
|
- name: Publish to PyPI
|
|
run: |
|
|
bash ./bin/publish-pypi
|
|
env:
|
|
PYPI_TOKEN: ${{ secrets.CLOUDFLARE_PYPI_TOKEN || secrets.PYPI_TOKEN }}
|