Skip to content

Workflow file for this run

name: Release
on:
push:
tags:
- 'v8.*'
- '!v0.*'
jobs:
build:
uses: silx-kit/jupyterlab-h5web/.github/workflows/build.yml@8,x

Check failure on line 11 in .github/workflows/release.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/release.yml

Invalid workflow file

error parsing called workflow ".github/workflows/release.yml" -> "silx-kit/jupyterlab-h5web/.github/workflows/build.yml@8,x" : failed to fetch workflow: reference to workflow should be either a valid branch, tag, or commit
release:
needs: build
runs-on: ubuntu-latest
steps:
- name: Download the built extension
uses: actions/download-artifact@v2
with:
name: jupyterlab_h5web-dist
path: dist
- name: Publish package on PyPI 🎉
uses: pypa/gh-action-pypi-publish@release/v1
with:
user: __token__
password: ${{ secrets.PYPI_API_TOKEN }}