Skip to content

Commit

Permalink
Create main.yml for release action
Browse files Browse the repository at this point in the history
  • Loading branch information
SyedA5688 authored Sep 3, 2024
1 parent 558840b commit 96168ae
Showing 1 changed file with 33 additions and 0 deletions.
33 changes: 33 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
on:
release:
types: [created]
push:
branches:
- main
jobs:
pypi-publish:
name: Publish release to PyPI
runs-on: ubuntu-latest
environment:
name: pypi
url: https://pypi.org/project/cell2sentence
permissions:
contents: write
id-token: write
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.x'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install setuptools wheel
- name: Build package
run: |
python setup.py sdist bdist_wheel
- name: Publish package distributions to PyPI
uses: pypa/[email protected]
with:
password: ${{ secrets.PYPI_API }}

0 comments on commit 96168ae

Please sign in to comment.