Merge pull request #202 from BrianSeong99/brian_fix_instruction-tabs-… #199
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: Deploy Miden Assembly Playground | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout 🛎️ | |
uses: actions/checkout@v4 | |
- name: Install WASM | |
uses: jetli/[email protected] | |
with: | |
version: "latest" | |
- name: Install and Build 🔧 | |
run: | | |
cd playground | |
npm run build:miden | |
npm install | |
npm run build | |
npx webpack | |
- name: Deploy to GitHub Pages | |
uses: peaceiris/actions-gh-pages@v3 | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
publish_dir: ./playground/build/ |