mirror of
https://github.com/Instagram/LibCST.git
synced 2025-12-23 10:35:53 +00:00
57 lines
1.5 KiB
YAML
57 lines
1.5 KiB
YAML
name: pypi_upload
|
|
|
|
on:
|
|
release:
|
|
types: [published]
|
|
push:
|
|
branches: [main]
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
jobs:
|
|
build:
|
|
uses: Instagram/LibCST/.github/workflows/build.yml@main
|
|
upload_release:
|
|
name: Upload wheels to pypi
|
|
runs-on: ubuntu-latest
|
|
needs: build
|
|
permissions:
|
|
id-token: write
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
with:
|
|
fetch-depth: 0
|
|
- name: Download binary wheels
|
|
id: download
|
|
uses: actions/download-artifact@v4
|
|
with:
|
|
pattern: wheels-*
|
|
path: wheelhouse
|
|
merge-multiple: true
|
|
- uses: actions/setup-python@v5
|
|
with:
|
|
cache: pip
|
|
cache-dependency-path: "pyproject.toml"
|
|
python-version: "3.10"
|
|
- name: Install hatch
|
|
run: pip install -U hatch
|
|
- name: Build a source tarball
|
|
env:
|
|
LIBCST_NO_LOCAL_SCHEME: 1
|
|
run: >-
|
|
hatch run python -m
|
|
build
|
|
--sdist
|
|
--outdir ${{ steps.download.outputs.download-path }}
|
|
- name: Publish distribution 📦 to Test PyPI
|
|
if: github.event_name == 'push'
|
|
uses: pypa/gh-action-pypi-publish@release/v1
|
|
with:
|
|
repository-url: https://test.pypi.org/legacy/
|
|
packages-dir: ${{ steps.download.outputs.download-path }}
|
|
- name: Publish distribution 📦 to PyPI
|
|
if: github.event_name == 'release'
|
|
uses: pypa/gh-action-pypi-publish@release/v1
|
|
with:
|
|
packages-dir: ${{ steps.download.outputs.download-path }}
|