Skip to content

v5.2.1

v5.2.1 #31

Workflow file for this run

name: Publish Package
on:
release:
types: [published]
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install node
uses: actions/setup-node@v1
with:
node-version: "12.x"
registry-url: "https://registry.npmjs.org"
- name: Install Python
uses: actions/setup-python@v1
with:
python-version: "3.x"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install setuptools wheel twine jupyterlab~=3.0 jupyter_packaging~=0.7.9
- name: Build and publish NPM package
if: ${{ startsWith(github.event.release.tag_name, 'npm') }}
run: |
if [[ ${PRE_RELEASE} == "true" ]]; then export TAG="next"; else export TAG="latest"; fi
echo Publishing ${VERSION} with distribution tag ${TAG}
npm install -g yarn
yarn install
# yarn lerna version ${VERSION} --yes --no-git-tag-version
pushd packages/common
yarn run publish --access public --tag ${TAG}
popd
pushd packages/labextension
yarn run publish --access public --tag ${TAG}
popd
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
PRE_RELEASE: ${{ github.event.release.prerelease }}
VERSION: ${{ github.event.release.name }}
- name: Publish Python package
if: ${{ !startsWith(github.event.release.tag_name, 'npm') }}
env:
TWINE_USERNAME: __token__
TWINE_PASSWORD: ${{ secrets.PYPI_API_TOKEN }}
run: |
npm install -g yarn
yarn install
yarn build
python setup.py sdist bdist_wheel
twine upload dist/*