Skip to content

fix(ci): simplify main branch check in pypi release (#508) #64

fix(ci): simplify main branch check in pypi release (#508)

fix(ci): simplify main branch check in pypi release (#508) #64

Workflow file for this run

name: Upload tagged commit to PyPI
on:
push:
tags:
- "*.*.**"
jobs:
build:

Check failure on line 7 in .github/workflows/release.yml

View workflow run for this annotation

GitHub Actions / Upload tagged commit to PyPI

Invalid workflow file

The workflow is not valid. .github/workflows/release.yml (Line: 7, Col: 3): The workflow must contain at least one job with no dependencies.
name: Build distribution
runs-on: ubuntu-latest
needs: get_branch
if: ${{ github.ref == 'refs/heads/main' }}
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.x"
- name: Install pypa/build
run: >-
python3 -m
pip install
build
--user
- name: Build a binary wheel and a source tarball
run: python3 -m build
- name: Store the distribution packages
uses: actions/upload-artifact@v4
with:
name: python-package-distributions
path: dist/
publish-to-pypi:
name: >-
Publish Python distribution to PyPI
needs:
- build
runs-on: ubuntu-latest
environment:
name: pypi
url: https://pypi.org/p/ga4gh-vrs
permissions:
id-token: write # IMPORTANT: mandatory for trusted publishing
steps:
- name: Download all the dists
uses: actions/download-artifact@v4
with:
name: python-package-distributions
path: dist/
- name: Publish distribution to PyPI
uses: pypa/gh-action-pypi-publish@release/v1