Skip to content

Merge pull request #284 from Shopify/dependabot/npm_and_yarn/document… #24

Merge pull request #284 from Shopify/dependabot/npm_and_yarn/document…

Merge pull request #284 from Shopify/dependabot/npm_and_yarn/document… #24

Workflow file for this run

name: Deploy documentation
on:
push:
branches:
- master
env:
RUBY_VERSION: 3.0.3
NODE_VERSION: 16.19.0
jobs:
release:
name: Deploy documentation
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: ${{ env.NODE_VERSION }}
- name: Install dependencies
run: yarn
- name: Install documentation dependencies and build
run: |
cd documentation
yarn
yarn build
- name: Publish documentation
run: |
git remote set-url origin https://git:${GITHUB_TOKEN}@github.com/${GITHUB_REPOSITORY}.git
yarn deploy:documentation -u "github-actions-bot <[email protected]>"
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}