Skip to content

Workflow file for this run

name: Build Web
on:
workflow_dispatch:
workflow_call:
jobs:
build:
strategy:
fail-fast: false
matrix:
include:
- precision: single
arch: wasm32
- precision: double
arch: wasm32
runs-on: ubuntu-20.04
steps:
- name: Checkout
uses: actions/checkout@v3
with:
submodules: true
fetch-depth: 0
- name: 🔗 GDExtension Build
uses: godot/godot-cpp-template/.github/actions/build
with:
platform: web
arch: ${{ matrix.arch }}
godot-cpp-location: godot-cpp
float-precision: ${{ matrix.precision }}
build-target-type: template_release
- name: Upload Artifact
uses: actions/upload-artifact@v3
with:
name: Godot_Whisper
path: |
${{ github.workspace }}/bin/**/*.wasm
if-no-files-found: error