Skip to content

fix gg games starting with "start" button set. always build sdl3 for … #67

fix gg games starting with "start" button set. always build sdl3 for …

fix gg games starting with "start" button set. always build sdl3 for … #67

Workflow file for this run

name: Build Web & Deploy to GH
on: [push]
env:
EM_VERSION: '4.0.10'
EM_CACHE_FOLDER: 'emsdk-cache'
jobs:
build-and-deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup cache
id: cache-system-libraries
uses: actions/cache@v4
with:
path: ${{env.EM_CACHE_FOLDER}}
key: ${{env.EM_VERSION}}-${{ runner.os }}
- name: Setup emsdk
uses: mymindstorm/setup-emsdk@v14
with:
version: ${{env.EM_VERSION}}
actions-cache-folder: ${{env.EM_CACHE_FOLDER}}
- name: Install and Build # This example project is built using npm and outputs the result to the 'build' folder. Replace with the commands required to build your project, or remove this step entirely if your site is pre-built.
run: |
cmake --preset emsdk
cmake --build --preset emsdk
- name: Deploy 🚀
uses: JamesIves/github-pages-deploy-action@v4
with:
branch: gh-pages # The branch the action should deploy to.
folder: build/emsdk/bin # The folder the action should deploy.