Merge pull request #261 from vados-cosmonic/fix=remove-unused-video-l… #14
This file contains hidden or 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: Deploy mdBook site to Pages | |
on: | |
push: | |
branches: | |
- main | |
workflow_dispatch: | |
inputs: | |
ref: | |
required: false | |
type: string | |
default: main | |
description: | | |
The git ref to deploy (ex. 'main', 'branch', '<commit sha>') | |
publish-domain: | |
required: false | |
type: string | |
default: "component-model.bytecodealliance.org" | |
description: | | |
The domain to which to publish (ex. 'component-model.bytecodealliance.org') | |
permissions: | |
contents: read | |
pages: write | |
id-token: write | |
concurrency: | |
group: "pages" | |
cancel-in-progress: false | |
env: | |
MDBOOK_VERSION: 0.4.21 | |
MDBOOK_ALERTS_VERSION: 0.6.7 | |
MDBOOK_LINKCHECK_VERSION: 0.7.7 | |
ARTIFACT_PATH: ./component-model/book/html | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
with: | |
ref: ${{ inputs.ref || 'main' }} | |
- name: build mdbook | |
uses: ./.github/actions/mdbook | |
with: | |
publish-pages-artifact: true | |
publish-domain: ${{ inputs.publish-domain || 'component-model.bytecodealliance.org' }} | |
deploy: | |
if: ${{ github.repository_owner == 'bytecodealliance' }} | |
runs-on: ubuntu-latest | |
needs: | |
- build | |
environment: | |
name: github-pages | |
url: ${{ steps.deployment.outputs.page_url }} | |
steps: | |
- name: Deploy to GitHub Pages | |
id: deployment | |
uses: actions/deploy-pages@d6db90164ac5ed86f2b6aed7e0febac5b3c0c03e # v4.0.5 |