Editorial: Add missing period to initial value paragraphs (#386) #113
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 spec & cookbook to gh-pages | |
on: | |
push: | |
branches: [ main ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Install dev deps | |
run: npm install | |
- name: Build the spec | |
run: npm run build:spec | |
- name: Build the cookbook | |
run: npm run build:cookbook | |
- name: Build the tutorial | |
run: npm run build:tutorial | |
- name: Deploy 🚀 | |
uses: JamesIves/github-pages-deploy-action@releases/v3 | |
with: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
BRANCH: gh-pages | |
FOLDER: out |