We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent df18fae commit 908ba17Copy full SHA for 908ba17
.github/workflows/publish.yml
@@ -6,7 +6,7 @@ jobs:
6
# Auto-publish when version is increased
7
publish-job:
8
# Only publish on `main` branch
9
- if: github.ref == 'refs/heads/main'
+ if: github.ref == 'refs/heads/pypi'
10
runs-on: ubuntu-latest
11
permissions: # Don't forget permissions
12
contents: write
@@ -15,6 +15,6 @@ jobs:
15
- uses: etils-actions/pypi-auto-publish@v1
16
with:
17
pkg-name: ssak
18
- pypi-token: ${{ secrets.PYPI_API_TOKEN }}
19
- gh-token: ${{ secrets.GITHUB_TOKEN }}
+ # pypi-token: ${{ secrets.PYPI_API_TOKEN }}
+ # gh-token: ${{ secrets.GITHUB_TOKEN }}
20
parse-changelog: false
0 commit comments