Skip to content

Commit

Permalink
Attemp to fix publish action
Browse files Browse the repository at this point in the history
  • Loading branch information
szastupov committed Mar 12, 2023
1 parent f486693 commit 1e82a3d
Showing 1 changed file with 13 additions and 5 deletions.
18 changes: 13 additions & 5 deletions .github/workflows/publish.yml
@@ -1,5 +1,13 @@
- name: pypi-publish
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags')
uses: pypa/gh-action-pypi-publish@v1.7.1
with:
password: ${{ secrets.PYPI_API_TOKEN }}
name: Publish

on:
push:
branches:
- master

jobs:
- name: pypi-publish
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags')
uses: pypa/gh-action-pypi-publish@v1.7.1
with:
password: ${{ secrets.PYPI_API_TOKEN }}

0 comments on commit 1e82a3d

Please sign in to comment.