This repository was archived by the owner on Apr 15, 2025. It is now read-only.
Update README with withdrawn status #114
This file contains hidden or 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 |