You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# This workflows will upload a Python Package using Twine when a release is created
2
+
# For more information see: https://help.github.com/en/actions/language-and-framework-guides/using-python-with-github-actions#publishing-to-package-registries
3
+
4
+
name: Upload to PyPI
5
+
6
+
on:
7
+
release:
8
+
types: [published]
9
+
10
+
jobs:
11
+
deploy:
12
+
runs-on: ubuntu-latest
13
+
14
+
steps:
15
+
- name: Checkout
16
+
uses: actions/checkout@v2
17
+
- name: Unset header
18
+
# checkout@v2 adds a header that makes branch protection report errors
19
+
# because the Github action bot is not a collaborator on the repo
0 commit comments