Merge pull request #154 from 0xPolygonMiden/dominik_change_docs_link #160
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@v3 | |
- 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/ |