Skip to content

Commit f971dbb

Browse files
authored
Merge branch 'main' into dev
2 parents f15c358 + fc63dab commit f971dbb

File tree

1 file changed

+22
-1
lines changed

1 file changed

+22
-1
lines changed

.github/workflows/mpqp_prod.yml

+22-1
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,30 @@ on:
55
branches:
66
- main
77
push:
8-
branches:
8+
branches:
99
- main
1010

11+
jobs:
12+
build_publish_package:
13+
runs-on: ubuntu-latest
14+
steps:
15+
- name: Checkout Repository
16+
uses: actions/checkout@v4
17+
- name: Install Dependencies
18+
run: |
19+
pip install -r requirements-dev.txt
20+
- name: Build Package
21+
run: python setup.py sdist bdist_wheel
22+
- name: Install Twine
23+
run: |
24+
pip install twine
25+
- name: Publish to PyPI
26+
run: |
27+
twine upload dist/*
28+
env:
29+
TWINE_USERNAME: __token__
30+
TWINE_PASSWORD: ${{ secrets.PRD_QT_API_TOKEN }}
31+
1132
jobs:
1233
build_publish_docs:
1334
# Deploy to cloudflare

0 commit comments

Comments
 (0)