We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 162f736 commit 5713992Copy full SHA for 5713992
.github/workflows/ci-wheels.yml
@@ -14,7 +14,7 @@ on:
14
15
push:
16
branches:
17
- - "master"
+ - "main"
18
- "v*x"
19
- "!auto-update-lockfiles"
20
- "!pre-commit-ci-update-config"
@@ -103,8 +103,8 @@ jobs:
103
needs: [build_bdist, build_sdist]
104
name: "Publish to Test PyPI"
105
runs-on: ubuntu-latest
106
- # upload to Test PyPI for every commit on master branch
107
- if: github.event_name == 'push' && github.event.ref == 'refs/heads/master'
+ # upload to Test PyPI for every commit on main branch
+ if: github.event_name == 'push' && github.event.ref == 'refs/heads/main'
108
steps:
109
- uses: actions/download-artifact@v3
110
with:
0 commit comments