Update knowledge.md and progress.md for Ian Cheah #120
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: MarkBind Deploy | |
on: [push] | |
jobs: | |
build_and_deploy: | |
runs-on: ubuntu-latest | |
name: Build & Deploy to GitHub Pages | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: '16' | |
- run: npm i -g markbind-cli | |
- run: markbind deploy --ci |