Skip to content

fix undo redo controls #72

fix undo redo controls

fix undo redo controls #72

Workflow file for this run

name: Deploy to Github Pages
on:
push:
branches:
- macroquad
permissions:
contents: write
jobs:
build-and-deploy:
concurrency: ci-${{ github.ref }} # Recommended if you intend to make multiple deployments in quick succession.
runs-on: ubuntu-latest
steps:
- name: Checkout 🛎️
uses: actions/checkout@v3
- uses: actions/cache@v3
with:
path: |
~/.cargo/bin/
~/.cargo/registry/index/
~/.cargo/registry/cache/
~/.cargo/git/db/
target/
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
- name: Install and Build 🔧
run: |
chmod +x web.sh
./web.sh
mkdir -p static
mv target/wasm32-unknown-unknown/release/{index.html,client.wasm} static
- name: Deploy 🚀
uses: JamesIves/github-pages-deploy-action@v4
with:
folder: static/