Skip to content
This repository has been archived by the owner on Oct 7, 2024. It is now read-only.

Update labels.cpp

Update labels.cpp #7

Workflow file for this run

name: Build Geode Mod
on:
push:
branches:
- "**"
pull_request:
branches:
- "**"
jobs:
build:
strategy:
fail-fast: false
matrix:
config:
- name: Windows
os: windows-latest
name: Geode OpenHack
runs-on: ${{ matrix.config.os }}
steps:
- uses: actions/checkout@v4
with:
submodules: recursive
- name: Build the mod
uses: geode-sdk/build-geode-mod@main
with:
combine: true
ccache-variant: ''
configure-args: "-DBUILD_STANDALONE=OFF"
target: ${{ matrix.config.target }}
package:
name: Package builds
runs-on: ubuntu-latest
needs: ['build']
steps:
- uses: geode-sdk/build-geode-mod/combine@main
id: build
- uses: actions/upload-artifact@v4
with:
name: OpenHack-Geode
path: ${{ steps.build.outputs.build-output }}