Steps 1 + 2: Full Release #4
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: "Steps 1 + 2: Full Release" | |
on: | |
workflow_dispatch: | |
inputs: | |
version_spec: | |
description: "New Version Specifier" | |
default: "next" | |
required: false | |
branch: | |
description: "The branch to target" | |
required: false | |
post_version_spec: | |
description: "Post Version Specifier" | |
required: false | |
since: | |
description: "Use PRs with activity since this date or git reference" | |
required: false | |
since_last_stable: | |
description: "Use PRs with activity since the last stable git tag" | |
required: false | |
type: boolean | |
steps_to_skip: | |
description: "Comma separated list of steps to skip during Populate Release" | |
required: false | |
jobs: | |
full_release: | |
runs-on: ubuntu-latest | |
permissions: | |
# This is useful if you want to use PyPI trusted publisher | |
# and NPM provenance | |
id-token: write | |
steps: | |
- uses: jupyterlab/maintainer-tools/.github/actions/base-setup@v1 | |
- name: Prep Release | |
id: prep-release | |
uses: jupyter-server/jupyter_releaser/.github/actions/prep-release@v2 | |
with: | |
token: ${{ secrets.ADMIN_GITHUB_TOKEN }} | |
version_spec: ${{ github.event.inputs.version_spec }} | |
post_version_spec: ${{ github.event.inputs.post_version_spec }} | |
branch: ${{ github.event.inputs.branch }} | |
since: ${{ github.event.inputs.since }} | |
since_last_stable: ${{ github.event.inputs.since_last_stable }} | |
- name: Populate Release | |
id: populate-release | |
uses: jupyter-server/jupyter_releaser/.github/actions/populate-release@v2 | |
with: | |
token: ${{ secrets.ADMIN_GITHUB_TOKEN }} | |
branch: ${{ github.event.inputs.branch }} | |
release_url: ${{ steps.prep-release.outputs.release_url }} | |
steps_to_skip: ${{ github.event.inputs.steps_to_skip }} | |
- name: Finalize Release | |
id: finalize-release | |
env: | |
# The following are needed if you use legacy PyPI set up | |
# PYPI_TOKEN: ${{ secrets.PYPI_TOKEN }} | |
# PYPI_TOKEN_MAP: ${{ secrets.PYPI_TOKEN_MAP }} | |
# TWINE_USERNAME: __token__ | |
NPM_TOKEN: ${{ secrets.NPM_TOKEN }} | |
uses: jupyter-server/jupyter-releaser/.github/actions/finalize-release@v2 | |
with: | |
token: ${{ secrets.ADMIN_GITHUB_TOKEN }} | |
release_url: ${{ steps.populate-release.outputs.release_url }} | |
- name: "** Next Step **" | |
if: ${{ success() }} | |
run: | | |
echo "Verify the final release" | |
echo ${{ steps.finalize-release.outputs.release_url }} |