File tree 2 files changed +38
-18
lines changed
2 files changed +38
-18
lines changed Original file line number Diff line number Diff line change @@ -43,10 +43,44 @@ jobs:
43
43
44
44
EOF
45
45
46
- - name : Upgrade dependencies
46
+ - name : Build hdijupyterutils dist
47
47
run : |
48
- pip install -U pip setuptools twine
49
- - name : Release
48
+ cd hdijupyterutils
49
+ python setup.py sdist
50
+ cd ..
51
+
52
+ - name : Publish hdijupyterutils to PyPI
53
+ uses : pypa/gh-action-pypi-publish@release/v1
54
+ with :
55
+ user : __token__
56
+ password : ${{ secrets.PYPI_TOKEN_HDIJUPYTERUTILS }}
57
+ packages_dir : hdijupyterutils/dist/
58
+ verbose : true
59
+
60
+ - name : Build autovizwidget dist
61
+ run : |
62
+ cd autovizwidget
63
+ python setup.py sdist
64
+ cd ..
65
+
66
+ - name : Publish autovizwidget to PyPI
67
+ uses : pypa/gh-action-pypi-publish@release/v1
68
+ with :
69
+ user : __token__
70
+ password : ${{ secrets.PYPI_TOKEN_AUTOVIZWIDGET }}
71
+ packages_dir : autovizwidget/dist/
72
+ verbose : true
73
+
74
+ - name : Build sparkmagic dist
50
75
run : |
76
+ cd sparkmagic
77
+ python setup.py sdist
78
+ cd ..
51
79
52
- /bin/sh deploy.sh
80
+ - name : Publish sparkmagic to PyPI
81
+ uses : pypa/gh-action-pypi-publish@release/v1
82
+ with :
83
+ user : __token__
84
+ password : ${{ secrets.PYPI_TOKEN_SPARKMAGIC }}
85
+ packages_dir : sparkmagic/dist/
86
+ verbose : true
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments