Upload to PyPI #1
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
name: Upload to PyPI | |
on: | |
release: | |
types: | |
- published | |
workflow_dispatch: | |
inputs: | |
pypi_repo: | |
description: 'Repo to upload to (testpypi or pypi)' | |
default: 'testpypi' | |
required: true | |
type: choice | |
options: | |
- testpypi | |
- pypi | |
jobs: | |
build_wheels: | |
uses: ./.github/workflows/wheel.yml | |
build_sdist: | |
runs-on: ubuntu-latest | |
container: ghcr.io/iith-compilers/manylinux2014-llvm/manylinux2014-llvm:x86-llvm12 | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Build IR2Vec | |
run: bash Manylinux2014_Compliant_Source/pkg/build.sh | |
- name: Build sdist | |
run: cd Manylinux2014_Compliant_Source/pkg && pipx run build --sdist | |
- uses: actions/upload-artifact@v3 | |
with: | |
path: Manylinux2014_Compliant_Source/pkg/dist/*.tar.gz | |
upload_pypi: | |
permissions: | |
id-token: write | |
needs: [build_wheels, build_sdist] | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/download-artifact@v3 | |
with: | |
name: artifact | |
path: dist | |
- name: Publish package to TestPyPI | |
uses: pypa/[email protected] | |
with: | |
repository-url: https://test.pypi.org/legacy/ | |
if: ${{ github.event.inputs.pypi_repo != 'pypi' }} | |
- name: Publish package to PyPI | |
uses: pypa/[email protected] | |
if: ${{ github.event.inputs.pypi_repo == 'pypi' }} |