We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c816d53 commit d16a88bCopy full SHA for d16a88b
2 files changed
.github/workflows/ci.yml
@@ -2,7 +2,7 @@ name: Python Tests
2
3
on:
4
push:
5
- branches: [master]
+ branches: [main]
6
pull_request:
7
8
jobs:
@@ -115,7 +115,7 @@ jobs:
115
116
- name: Deploy to Test PyPI
117
uses: pypa/gh-action-pypi-publish@release/v1
118
- if: startsWith(github.ref, 'refs/head/master')
+ if: startsWith(github.ref, 'refs/head/main')
119
with:
120
password: ${{ secrets.TEST_PYPI_API_TOKEN }}
121
repository_url: https://test.pypi.org/legacy/
.github/workflows/docs.yml
@@ -18,7 +18,7 @@ jobs:
18
uses: actions/upload-pages-artifact@v4
19
20
deploy:
21
- if: github.ref == 'refs/heads/master'
+ if: github.ref == 'refs/heads/main'
22
runs-on: ubuntu-latest
23
permissions:
24
contents: read
0 commit comments