Skip to content

fixup

fixup #21

Workflow file for this run

name: Deploy
on:
push:
branches:
- master
tags:
- "!*"
jobs:
build-deploy:
runs-on: ubuntu-latest
permissions:
contents: read
pages: write
id-token: write
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
steps:
- uses: actions/checkout@v4
with:
repository: LLK/scratch-gui
ref: v3.6.18
- run: npm install
- uses: actions/checkout@v4
with:
path: ./handpose2scratch
- run: sh ./handpose2scratch/install.sh
- run: npm run build
- uses: actions/configure-pages@v4
- uses: actions/upload-pages-artifact@v3
with:
path: build
- name: Deploy
id: deployment
uses: actions/deploy-pages@v4