chore(release): 1.0.0-alpha.102 #109
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: Publish the homepage to GitHub Pages | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- "alpha" | |
jobs: | |
deploy: | |
runs-on: ubuntu-latest | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
permissions: | |
contents: write | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
persist-credentials: false | |
- name: Setup node | |
uses: actions/setup-node@v4 | |
with: | |
node-version-file: ".nvmrc" | |
cache: "npm" | |
- name: Install the dependencies for Captain | |
run: npm i | |
- name: Install the dependencies for the homepage | |
run: npm i | |
working-directory: homepage | |
- name: Build the type docs for Captain | |
run: npm run typedoc:generate | |
- name: Build the homepage | |
run: npm run build | |
working-directory: homepage | |
- name: Deploy the homepage to GitHub Pages | |
uses: peaceiris/actions-gh-pages@v3 | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
publish_dir: ./homepage/out |