1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
name: Deploy on: push: branches: - master jobs: build-and-deploy: runs-on: ubuntu-latest steps: - name: Checkout 🛎️ uses: actions/[email protected] - name: Install and Build 🔧 run: | cargo install mdbook mdbook build - name: Deploy 🚀 uses: JamesIves/[email protected] with: branch: gh-pages folder: book