Skip to content

Commit

Permalink
Feat: auto-release tags
Browse files Browse the repository at this point in the history
  • Loading branch information
dorschw committed Aug 12, 2023
1 parent 31688e5 commit 9d751b9
Showing 1 changed file with 5 additions and 8 deletions.
13 changes: 5 additions & 8 deletions .github/workflows/release-pypi.yml
Original file line number Diff line number Diff line change
@@ -1,18 +1,15 @@
name: Release to PyPi
on:
# push:
# tags:
# - "v*.*.*"
workflow_dispatch:
push:
tags:
- "v*.*.*"

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Build and publish to pypi
- name: Build and publish to PyPi
uses: JRubics/[email protected]
with:
pypi_token: ${{ secrets.TEST_PYPI_TOKEN }}
repository_name: "testpypi"
repository_url: "https://test.pypi.org/legacy/"
pypi_token: ${{ secrets.PYPI_TOKEN }}

0 comments on commit 9d751b9

Please sign in to comment.