Skip to content

Commit 987c5b9

Browse files
authored
v0.0.1
1 parent 12490dd commit 987c5b9

File tree

1 file changed

+40
-0
lines changed

1 file changed

+40
-0
lines changed
Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
# This workflow 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+
# This workflow uses actions that are not certified by GitHub.
5+
# They are provided by a third-party and are governed by
6+
# separate terms of service, privacy policy, and support
7+
# documentation.
8+
9+
name: Upload Python Package
10+
11+
on:
12+
release:
13+
types: [published]
14+
15+
permissions:
16+
contents: read
17+
18+
jobs:
19+
deploy:
20+
21+
runs-on: ubuntu-latest
22+
23+
steps:
24+
- uses: actions/checkout@v3
25+
- name: Set up Python
26+
uses: actions/setup-python@v3
27+
with:
28+
python-version: '3.8'
29+
- name: Install dependencies
30+
run: |
31+
python3 -m pip install --upgrade build
32+
python3 -m pip install --user --upgrade twine
33+
- name: Build and Publish package
34+
env:
35+
TWINE_USERNAME: __token__
36+
TWINE_PASSWORD: ${{ secrets.MY_PYPI_TEST_API_TOKEN }}
37+
run: |
38+
python3 -m build
39+
python3 -m twine upload --repository testpypi dist/*
40+

0 commit comments

Comments
 (0)