Skip to content

Commit 627e9c3

Browse files
fix: Update workflow.yml - trigger from master
1 parent 668bbf8 commit 627e9c3

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/workflow.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: Upload Python Package
22
on:
33
push:
44
branches:
5-
- main
5+
- master
66
permissions:
77
contents: write
88
id-token: write
@@ -12,7 +12,7 @@ jobs:
1212
release:
1313
runs-on: ubuntu-latest
1414
steps:
15-
- name: Checkout main branch
15+
- name: Checkout master branch
1616
uses: actions/checkout@v4
1717
with:
1818
fetch-depth: 0
@@ -38,4 +38,4 @@ jobs:
3838
env:
3939
TWINE_USERNAME: __token__
4040
TWINE_PASSWORD: ${{ secrets.PYPI_API_TOKEN }}
41-
run: twine upload dist/*
41+
run: twine upload dist/*

0 commit comments

Comments
 (0)