Fix toggle button label #9
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 Fractal Play | |
on: | |
push: | |
branches: | |
- trunk | |
jobs: | |
deploy: | |
permissions: | |
pages: write | |
id-token: write | |
environment: | |
name: github-pages | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
- run: npm install --global elm-tooling | |
- name: Copy static files | |
run: mkdir -p dist && cp -r public/* dist/ | |
- name: Build | |
run: npx elm make src/Main.elm --output=dist/fractal-play.js | |
- name: Upload | |
uses: actions/upload-pages-artifact@v3 | |
with: | |
path: dist/ | |
- name: Deploy | |
uses: actions/deploy-pages@v4 | |