We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9640050 commit 47437c0Copy full SHA for 47437c0
.github/workflows/publish_pypi.yaml
@@ -1,4 +1,4 @@
1
-name: Publish Docker Images
+name: Publish to PyPi
2
on:
3
release:
4
types: [published]
@@ -22,6 +22,10 @@ jobs:
22
export DIFFGRAM_SDK_VERSION=${{ env.RELEASE_VERSION }}
23
- name: Echo
24
run: echo ${{ steps.tag.outputs.result }}
25
+ - name: Install Dependencies
26
+ run: |
27
+ cd sdk
28
+ pip install -r requirements.txt
29
- name: Install Twine
30
run: |
31
sudo apt-get update -y
@@ -31,4 +35,6 @@ jobs:
35
cd sdk
32
36
python setup.py sdist bdist_wheel
33
37
- name: Upload with Twine
34
- run: twine upload dist/* --skip-existing --username ${{ secrets.TWINE_PASSWORD }} --password ${{ secrets.TWINE_USERNAME }}
38
39
40
+ twine upload dist/* --skip-existing --username ${{ secrets.TWINE_PASSWORD }} --password ${{ secrets.TWINE_USERNAME }}
0 commit comments