Skip to content

Commit

Permalink
Add auto release workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
PabloLec committed Sep 29, 2021
1 parent ee0ed06 commit 0413314
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: Upload Python Package

on:
release:
types: [created]

jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: pypi-github-sync
uses: PabloLec/[email protected]
with:
github_repo: PabloLec/livelog
twine_username: ${{ secrets.TWINE_USERNAME }}
twine_password: ${{ secrets.TWINE_PASSWORD }}
verify_metadata: true
skip_existing: true
verbose: true

0 comments on commit 0413314

Please sign in to comment.