blob: 3f6f9c810d7373885e32b64066653156c90b000c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
name: pygbag_build
on: [workflow_dispatch]
jobs:
build-pygbag:
name: Build for Emscripten pygbag runtime
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Checkout
run: |
python -m pip install pygbag
python -m pygbag --build $GITHUB_WORKSPACE/main.py
- name : "Upload to GitHub pages branch gh-pages"
uses: JamesIves/github-pages-deploy-action@4.1.7
with:
branch: gh-pages
folder: build/web
|