mirror of
https://github.com/Instagram/LibCST.git
synced 2025-12-23 10:35:53 +00:00
Bumps [actions/checkout](https://github.com/actions/checkout) from 4 to 6. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v4...v6) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
60 lines
1.6 KiB
YAML
60 lines
1.6 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@v6
|
|
with:
|
|
fetch-depth: 0
|
|
persist-credentials: false
|
|
- name: Download binary wheels
|
|
id: download
|
|
uses: actions/download-artifact@v5
|
|
with:
|
|
pattern: wheels-*
|
|
path: wheelhouse
|
|
merge-multiple: true
|
|
- uses: actions/setup-python@v6
|
|
with:
|
|
python-version: "3.10"
|
|
- name: Install uv
|
|
uses: astral-sh/setup-uv@v7
|
|
with:
|
|
version: "0.7.13"
|
|
enable-cache: false
|
|
- name: Build a source tarball
|
|
env:
|
|
LIBCST_NO_LOCAL_SCHEME: 1
|
|
OUTDIR: ${{ steps.download.outputs.download-path }}
|
|
run: >-
|
|
uv run python -m
|
|
build
|
|
--sdist
|
|
--outdir "$OUTDIR"
|
|
- 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 }}
|