Merge pull request #468 from OpenFn/fix-docs-build #265
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: Build & deploy adaptor documentation | |
on: | |
push: | |
branches: [main] | |
jobs: | |
build: | |
name: 'Build docs to docs branch' | |
runs-on: ubuntu-latest | |
permissions: write-all | |
strategy: | |
matrix: | |
node-version: [18.17.1] | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: pnpm/action-setup@v2 | |
with: | |
version: 8.6.9 | |
- name: Setup node ${{ matrix.node-version }} | |
# https://github.com/actions/setup-node | |
uses: actions/setup-node@v3 | |
with: | |
node-version: ${{ matrix.node-version }} | |
cache: 'pnpm' | |
- name: config commit username | |
run: git config user.name $GH_USER | |
env: | |
GH_USER: ${{ secrets.GH_USER }} | |
- name: config commit email | |
run: git config user.email $GH_EMAIL | |
env: | |
GH_EMAIL: ${{ secrets.GH_EMAIL }} | |
- name: Installing packages | |
run: pnpm install --frozen-lockfile | |
- name: Build docs | |
run: pnpm build:adaptors docs | |
- name: Commit docs to docs branch | |
run: pnpm exec .github/workflows/docs.sh | |
# Trigger a rebuild on the docs site to pull adaptor docs | |
- name: Trigger deploy on openFn/docs | |
run: | | |
sleep 10s && curl -X POST \ | |
-H "Authorization: Bearer ${{ secrets.WF_DEPLOY_KEY }}" \ | |
-H "Accept: application/vnd.github.v3+json" \ | |
https://api.github.com/repos/openFn/docs/actions/workflows/5178103/dispatches \ | |
-d '{"ref": "main"}' |