Fix PyPi release #49
Workflow file for this run
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: jupyterlite | |
on: | |
push: | |
tags: | |
- "v[0-9]+.[0-9]+.[0-9]+" | |
- "v[0-9]+.[0-9]+.[0-9]+a[0-9]+" | |
- "v[0-9]+.[0-9]+.[0-9]+b[0-9]+" | |
- "v[0-9]+.[0-9]+.[0-9]+rc[0-9]+" | |
workflow_dispatch: | |
inputs: | |
target: | |
description: "Site to build and deploy" | |
type: choice | |
options: | |
- dev | |
- main | |
- dryrun | |
required: true | |
default: dryrun | |
schedule: | |
- cron: "0 19 * * SUN" | |
defaults: | |
run: | |
shell: bash -el {0} | |
jobs: | |
pixi_lock: | |
name: Pixi lock | |
runs-on: ubuntu-latest | |
steps: | |
- uses: holoviz-dev/holoviz_tasks/pixi_lock@pixi | |
lite_build: | |
name: Build Jupyterlite | |
needs: [pixi_lock] | |
runs-on: "ubuntu-latest" | |
timeout-minutes: 180 | |
outputs: | |
tag: ${{ steps.vars.outputs.tag }} | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
steps: | |
- uses: holoviz-dev/holoviz_tasks/pixi_install@pixi | |
with: | |
environments: lite | |
- name: Build | |
run: pixi run -e lite lite-build | |
- uses: actions/upload-artifact@v4 | |
if: always() | |
with: | |
name: lite | |
if-no-files-found: error | |
path: jupyterlite/ | |
- name: Set output | |
id: vars | |
run: echo "tag=${GITHUB_REF#refs/*/}" >> $GITHUB_OUTPUT | |
lite_publish: | |
name: Publish Jupyterlite | |
runs-on: "ubuntu-latest" | |
needs: [lite_build] | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }} | |
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }} | |
AWS_DEFAULT_REGION: ${{ secrets.AWS_DEFAULT_REGION }} | |
steps: | |
- uses: actions/download-artifact@v4 | |
with: | |
name: lite | |
path: jupyterlite/ | |
- name: Set output | |
id: vars | |
run: echo "tag=${{ needs.lite_build.outputs.tag }}" >> $GITHUB_OUTPUT | |
- name: upload dev | |
uses: peaceiris/actions-gh-pages@v4 | |
if: | | |
(github.event_name == 'workflow_dispatch' && github.event.inputs.target == 'dev') || | |
(github.event_name == 'push' && (contains(steps.vars.outputs.tag, 'a') || contains(steps.vars.outputs.tag, 'b') || contains(steps.vars.outputs.tag, 'rc'))) | |
with: | |
personal_token: ${{ secrets.ACCESS_TOKEN }} | |
external_repository: holoviz-dev/holonote-jupyterlite | |
publish_dir: ./jupyterlite | |
force_orphan: true | |
# - name: upload main | |
# if: | | |
# (github.event_name == 'workflow_dispatch' && github.event.inputs.target == 'main') || | |
# (github.event_name == 'push' && !(contains(steps.vars.outputs.tag, 'a') || contains(steps.vars.outputs.tag, 'b') || contains(steps.vars.outputs.tag, 'rc'))) | |
# uses: peaceiris/actions-gh-pages@v4 | |
# with: | |
# github_token: ${{ secrets.GITHUB_TOKEN }} | |
# publish_dir: ./jupyterlite | |
# cname: holonote-jupyterlite.holoviz.org | |
# force_orphan: true |