mirror of
https://github.com/tiennm99/serena.git
synced 2026-09-04 02:18:39 +00:00
GH workflow fü release to pypi
This commit is contained in:
committed by
Michael Panchenko
parent
62cce5d66a
commit
992d4927b8
@@ -1,30 +0,0 @@
|
||||
name: Upload Python Package
|
||||
|
||||
on:
|
||||
workflow_dispatch: # Manual trigger only - workflow disabled from auto-running
|
||||
|
||||
#on:
|
||||
# release:
|
||||
# types: [created]
|
||||
|
||||
jobs:
|
||||
deploy:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- name: Set up Python
|
||||
uses: actions/setup-python@v1
|
||||
with:
|
||||
python-version: 3.11
|
||||
|
||||
|
||||
- name: Install build and twine
|
||||
run: pip install build twine
|
||||
- name: Build and publish
|
||||
env:
|
||||
PYPI_TOKEN: ${{ secrets.PYPI_TOKEN }}
|
||||
run: |
|
||||
if [ -z "${PYPI_TOKEN}" ]; then echo "Set the PYPI_TOKEN variable in your repository secrets"; exit 1; fi
|
||||
python -m build
|
||||
python -m twine upload dist/* --username __token__ --password $PYPI_TOKEN
|
||||
|
||||
@@ -0,0 +1,47 @@
|
||||
name: Publish Python Package
|
||||
|
||||
on:
|
||||
release:
|
||||
types: [created]
|
||||
|
||||
|
||||
env:
|
||||
# Set this to true manually in the GitHub workflow UI if you want to publish to PyPI
|
||||
# Will always publish to testpypi
|
||||
PUBLISH_TO_PYPI: true
|
||||
|
||||
jobs:
|
||||
publish:
|
||||
name: Publish the serena-agent package
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
permissions:
|
||||
id-token: write # Required for trusted publishing
|
||||
contents: read
|
||||
|
||||
steps:
|
||||
- name: Checkout code
|
||||
uses: actions/checkout@v4
|
||||
|
||||
- name: Install the latest version of uv
|
||||
uses: astral-sh/setup-uv@v6
|
||||
with:
|
||||
version: "latest"
|
||||
|
||||
- name: Build package
|
||||
run: uv build
|
||||
|
||||
- name: Upload artifacts to GitHub Release
|
||||
if: env.PUBLISH_TO_PYPI == 'true'
|
||||
uses: softprops/action-gh-release@v2
|
||||
with:
|
||||
files: |
|
||||
dist/*.tar.gz
|
||||
dist/*.whl
|
||||
|
||||
- name: Publish to TestPyPI
|
||||
run: uv publish --index testpypi
|
||||
|
||||
- name: Publish to PyPI (conditional)
|
||||
if: env.PUBLISH_TO_PYPI == 'true'
|
||||
run: uv publish
|
||||
Reference in New Issue
Block a user