Skip to content

Commit

Permalink
trigger on tags only; upload to prod pypi
Browse files Browse the repository at this point in the history
  • Loading branch information
atemerev committed Feb 29, 2024
1 parent aed9626 commit af7ebe9
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/publish_wheels.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
name: Neurodamus Wheels

on: push
on:
push:
tags:
- '*'

jobs:
wheel:
Expand Down Expand Up @@ -36,4 +39,4 @@ jobs:
PYPI_TOKEN: ${{ secrets.PYPI_TOKEN }}
run: |
pip3 install twine
python${{ matrix.python_version }} -m twine upload --username $PYPI_USER --password $PYPI_TOKEN --repository testpypi dist/*
python${{ matrix.python_version }} -m twine upload --username $PYPI_USER --password $PYPI_TOKEN dist/*

0 comments on commit af7ebe9

Please sign in to comment.