docs(seed-docs): add buttons usage guideline (#369) #243
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
on: | |
push: | |
branches: | |
- main | |
paths: | |
- 'docs/**' | |
name: Deploy Seed Docs Production Pages | |
jobs: | |
deploy: | |
name: Deploy Seed Docs | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 18.12.1 | |
cache: yarn | |
- name: Install Dependencies | |
run: yarn install --immutable | |
- name: Build `seed-design/design-token` | |
working-directory: ./packages/design-token | |
run: | | |
yarn build | |
- name: Build `seed-design/design-theming` | |
working-directory: ./packages/react-theming | |
run: | | |
yarn build | |
- name: Cache Gatsby `.cache` Folder | |
uses: actions/cache@v3 | |
id: gatsby-cache-folder | |
with: | |
path: docs/.cache | |
key: ${{ runner.os }}-cache-gatsby | |
restore-keys: | | |
${{ runner.os }}-cache-gatsby | |
- if: steps.gatsby-cache-folder.outputs.cache-hit == 'true' | |
run: echo 'gatsby-cache-folder cache hit!' | |
- name: Cache Gatsby `public` Folder | |
uses: actions/cache@v3 | |
id: gatsby-public-folder | |
with: | |
path: docs/public/ | |
key: ${{ runner.os }}-public-gatsby | |
restore-keys: | | |
${{ runner.os }}-public-gatsby | |
- if: steps.gatsby-public-folder.outputs.cache-hit == 'true' | |
run: echo 'gatsby-public-folder cache hit!' | |
- name: Build `Seed Docs` | |
working-directory: ./docs | |
run: | | |
yarn build | |
env: | |
# incremental builds | |
# https://www.gatsbyjs.org/docs/page-build-optimizations-for-incremental-data-changes/ | |
GATSBY_EXPERIMENTAL_PAGE_BUILD_ON_DATA_CHANGES: true | |
- name: Production Deploy `Seed Docs` at Cloudflare pages | |
uses: cloudflare/wrangler-action@2.0.0 | |
with: | |
apiToken: ${{ secrets.CF_API_TOKEN }} | |
accountId: ${{ secrets.CF_ACCOUNT_ID }} | |
command: pages publish ./docs/public --project-name=seed-design |