Merge pull request #61 from WebAssembly/dschuff-patch-1 #53
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: CI for specs | |
| on: | |
| push: | |
| branches: [ main ] | |
| paths: [ .github/**, document/** ] | |
| pull_request: | |
| branches: [ main ] | |
| paths: [ .github/**, document/** ] | |
| # Allows you to run this workflow manually from the Actions tab | |
| workflow_dispatch: | |
| jobs: | |
| build-js-api-spec: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repo | |
| uses: actions/checkout@v2 | |
| - name: Setup Bikeshed | |
| run: pip install bikeshed && bikeshed update | |
| - name: Run Bikeshed | |
| run: bikeshed spec "document/js-api/index.bs" "document/js-api/index.html" | |
| - name: Upload artifact | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: js-api-rendered | |
| path: document/js-api/index.html | |
| build-web-api-spec: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repo | |
| uses: actions/checkout@v2 | |
| - name: Setup Bikeshed | |
| run: pip install bikeshed && bikeshed update | |
| - name: Run Bikeshed | |
| run: bikeshed spec "document/web-api/index.bs" "document/web-api/index.html" | |
| - name: Upload artifact | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: web-api-rendered | |
| path: document/web-api/index.html | |
| build-legacy-exceptions-core-spec: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repo | |
| uses: actions/checkout@v2 | |
| with: | |
| submodules: "recursive" | |
| - name: Setup TexLive | |
| run: sudo apt-get update -y && sudo apt-get install -y latexmk texlive-latex-recommended texlive-latex-extra texlive-fonts-recommended | |
| - name: Setup Sphinx | |
| run: pip install six && pip install sphinx==5.1.0 | |
| - name: Build main spec | |
| run: cd document/legacy/exceptions/core && make main | |
| - name: Upload artifact | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: legacy-exceptions-core-rendered | |
| path: document/legacy/exceptions/core/_build/html | |
| build-legacy-exceptions-js-api-spec: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repo | |
| uses: actions/checkout@v2 | |
| - name: Setup Bikeshed | |
| run: pip install bikeshed && bikeshed update | |
| - name: Run Bikeshed | |
| run: bikeshed spec "document/legacy/exceptions/js-api/index.bs" "document/legacy/exceptions/js-api/index.html" | |
| - name: Upload artifact | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: legacy-exceptions-js-api-rendered | |
| path: document/legacy/exceptions/js-api/index.html | |
| build-spec-versions: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repo | |
| uses: actions/checkout@v2 | |
| - name: Upload artifacts | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: versions-rendered | |
| path: document/versions/ | |
| publish-spec: | |
| runs-on: ubuntu-latest | |
| needs: | |
| - build-js-api-spec | |
| - build-legacy-exceptions-core-spec | |
| - build-legacy-exceptions-js-api-spec | |
| - build-spec-versions | |
| steps: | |
| - name: Checkout repo | |
| uses: actions/checkout@v2 | |
| - name: Create output directory | |
| run: mkdir _output && cp document/index.html _output/index.html | |
| - name: Download JS API spec artifact | |
| uses: actions/download-artifact@v4 | |
| with: | |
| name: js-api-rendered | |
| path: _output/js-api | |
| - name: Download legacy exceptions core spec artifact | |
| uses: actions/download-artifact@v4 | |
| with: | |
| name: legacy-exceptions-core-rendered | |
| path: _output/legacy/exceptions/core | |
| - name: Download legacy exceptions JS API spec artifact | |
| uses: actions/download-artifact@v4 | |
| with: | |
| name: legacy-exceptions-js-api-rendered | |
| path: _output/legacy/exceptions/js-api | |
| - name: Download spec versions artifacts | |
| uses: actions/download-artifact@v4 | |
| with: | |
| name: versions-rendered | |
| path: _output/versions | |
| - name: Publish to GitHub Pages | |
| if: github.ref == 'refs/heads/main' | |
| uses: peaceiris/actions-gh-pages@v3 | |
| with: | |
| publish_dir: ./_output | |
| github_token: ${{ secrets.GITHUB_TOKEN }} |