We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2c08713 commit a947a9aCopy full SHA for a947a9a
1 file changed
.github/workflows/create_release.yml
@@ -0,0 +1,29 @@
1
+name: Create Release
2
+
3
+on:
4
+ push:
5
+ tags:
6
+ - '*'
7
8
+jobs:
9
+ create_release:
10
+ name: Create Release
11
+ runs-on: ubuntu-latest
12
+ steps:
13
+ - name: Checkout code
14
+ uses: actions/checkout@v2
15
16
+ - name: Set up Python
17
+ uses: actions/setup-python@v2
18
+ with:
19
+ python-version: 3.x
20
21
+ - name: Install dependencies
22
+ run: |
23
+ python -m pip install --upgrade pip
24
+ pip install build twine
25
26
+ - name: Build and upload package
27
28
+ python -m build --sdist --wheel
29
+ twine upload dist/*
0 commit comments