ci(deploy): update vm #37
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: Start Site | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- calliope | |
jobs: | |
build-deploy: | |
runs-on: ubuntu-latest | |
steps: | |
- name: checkout gui | |
uses: actions/checkout@v3 | |
with: | |
ref: 'calliope' | |
fetch-depth: 0 | |
- run: npm install | |
- run: npm update scratch-vm | |
- run: npm run build | |
- name: publish | |
uses: peaceiris/actions-gh-pages@v3 | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
publish_dir: ./build | |
cname: blocks.calliope.cc |