We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 668bbf8 commit 627e9c3Copy full SHA for 627e9c3
.github/workflows/workflow.yml
@@ -2,7 +2,7 @@ name: Upload Python Package
2
on:
3
push:
4
branches:
5
- - main
+ - master
6
permissions:
7
contents: write
8
id-token: write
@@ -12,7 +12,7 @@ jobs:
12
release:
13
runs-on: ubuntu-latest
14
steps:
15
- - name: Checkout main branch
+ - name: Checkout master branch
16
uses: actions/checkout@v4
17
with:
18
fetch-depth: 0
@@ -38,4 +38,4 @@ jobs:
38
env:
39
TWINE_USERNAME: __token__
40
TWINE_PASSWORD: ${{ secrets.PYPI_API_TOKEN }}
41
- run: twine upload dist/*
+ run: twine upload dist/*
0 commit comments