yagbas 0.2.0

Yagbas is a programming language that builds programs for the Game Boy.
Documentation

name: Lang Ref

on:
  push:
    branches:
      - main

permissions:
  contents: write

jobs:
  build:
    runs-on: ubuntu-latest

    steps:
      - name: Checkout Repository
        uses: actions/checkout@v2
        with:
          # github-pages-deploy-action requires we set this
          persist-credentials: false
      
      - name: Install Rust
        uses: actions-rs/toolchain@v1
        with:
          toolchain: nightly
          profile: minimal
          default: true
      
      - name: Install mdbook
        run: cargo install mdbook
      
      - name: Build The Book
        run: mdbook build

      - name: Deploy 🚀
        uses: JamesIves/github-pages-deploy-action@v4
        with:
          branch: gh-pages # The branch the action should deploy to.
          folder: target/lang_ref # The folder the action should deploy.