Skip to content
This repository has been archived by the owner on Aug 10, 2024. It is now read-only.

Workflow file for this run

name: Update package index
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
ref: ${{ github.event.inputs.ref }}
repository: ${{ github.event.inputs.repository }}
- name: Generate package index
run: .ci/update-index.py ${{ github.repository }}
- name: Upload artifact
uses: actions/upload-pages-artifact@v3
deploy:
needs: build
runs-on: ubuntu-latest
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
permissions:
id-token: write
pages: write
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4
on:
release:
types:
- released
workflow_dispatch: