We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c8b7d12 commit 24886eaCopy full SHA for 24886ea
.github/workflows/main.yml
@@ -4,9 +4,9 @@ name: Main
4
on:
5
# Runs on pushes targeting the default branch
6
push:
7
- branches: ["main"]
+ branches: ["main","master"]
8
pull_request:
9
- branches: [ main ]
+ branches: [ main , master]
10
11
# Allows you to run this workflow manually from the Actions tab
12
workflow_dispatch:
Makefile
@@ -18,7 +18,7 @@ build:
18
python3 -m build
19
20
test_upload:
21
- python3 -m twine upload -u wulffern --repository testpypi dist/*
+ python3 -m twine upload -u __token__ --repository testpypi dist/*
22
23
upload:
24
- python3 -m twine upload -u wulffern --repository pypi dist/*
+ python3 -m twine upload -u __token__ --repository pypi dist/*
0 commit comments