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 fd2a2ce commit 3e9ae96Copy full SHA for 3e9ae96
scripts/deploy.sh
@@ -1,11 +1,5 @@
1
#!/bin/bash
2
3
-# Assumptions:
4
-#
5
-# 1. NPM token is configured in ~/.npmrc
6
-# 2. PyPI user and token is configured in ~/.pypirc
7
-# 3. Anaconda token is configured in ~/.tokens/anaconda
8
-
9
set -e
10
set -x
11
@@ -16,10 +10,12 @@ then
16
fi
17
18
12
git clean -dfx
19
-npm publish --access public
13
+npm install
14
+npm publish --access public # token is configured in ~/.npmrc; requires OTP
20
15
21
22
-python setup.py build_js sdist upload
+python setup.py build_js sdist
+twine upload -u __token__ -p $(cat ~/.tokens/pypi_jupyter_bokeh) dist/jupyter_bokeh-*.tar.gz
23
24
25
conda build conda.recipe
0 commit comments