Skip to content

Commit

Permalink
removing transonic on push to pypi
Browse files Browse the repository at this point in the history
  • Loading branch information
cudmore committed May 28, 2024
1 parent 16cbb8e commit f1cd2cf
Showing 1 changed file with 41 additions and 0 deletions.
41 changes: 41 additions & 0 deletions .github/workflows/publish_no_transonic.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
# my twine key is in
# TWINE_PASSWORD: ${{ secrets.PYPI_API_TOKEN }}

name: Publish brightest to PyPi (cudmore)

on:
workflow_run:
workflows: ["Release (cudmore)"]
types: [completed]
#branches: [master]

jobs:
deploy:
# this will run when you have tagged a commit, starting with "v*"
# and requires that you have put your twine API key in your
# github secrets (see readme for details)
runs-on: ubuntu-latest
steps:
- name: Checkout source (cudmore)
uses: actions/checkout@v3
with:
fetch-depth: 0 # needed so setuptools_scm can get tags
- name: Set up Python (cudmore)
uses: actions/setup-python@v4
with:
python-version: "3.x"
- name: Install dependencies (cudmore)
run: |
python -m pip install --upgrade pip
pip install -U setuptools wheel twine build
#pip install -U '.[gui]'
pip install -U .
- name: Build and publish (cudmore)
env:
TWINE_USERNAME: __token__
TWINE_PASSWORD: ${{ secrets.PYPI_API_TOKEN }}
run: |
git tag
#python setup.py --version
python -m build .
twine upload dist/*

0 comments on commit f1cd2cf

Please sign in to comment.