docs: replace Shopify internal lib to avoid misunderstanding (#163) #124
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: Deploy documentation | |
'on': | |
push: | |
branches: | |
- main | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Setup node | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 16 | |
- name: Install Yarn | |
run: npm install --global yarn | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Install & Build Docs | |
run: | | |
cd docs | |
yarn | |
yarn build | |
- name: Deploy to GitHub Pages | |
uses: peaceiris/actions-gh-pages@v3 | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
publish_dir: ./docs/build | |
user_name: github-actions[bot] | |
user_email: github-actions[bot]@users.noreply.github.com |