We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 38edbcd + e977476 commit 5dda090Copy full SHA for 5dda090
.github/workflows/release.yml
@@ -10,16 +10,7 @@ on:
10
- 'v*.*.*'
11
12
jobs:
13
- verify-main-branch: # ensures we only release from main
14
- runs-on: ubuntu-latest
15
- steps:
16
- - name: Exit if not on main branch
17
- if: github.ref != 'refs/heads/main'
18
- run: echo "Not on main branch, exiting" && exit -1
19
-
20
release-middleware:
21
- needs:
22
- - "verify-main-branch"
23
runs-on: "ubuntu-latest"
24
steps:
25
- uses: actions/checkout@v2
@@ -47,12 +38,10 @@ jobs:
47
38
password: ${{ secrets.PYPI_TOKEN }}
48
39
skip-existing: true
49
40
packages-dir: dist/
50
51
41
release-operate:
52
42
runs-on: macos-latest
53
43
needs:
54
44
- "release-middleware"
55
56
45
57
46
58
- uses: actions/setup-python@v4
0 commit comments