mirror of
https://github.com/TemujinCalidius/SurvivorCore.git
synced 2026-08-14 00:58:01 +00:00
Foundation (Config/Assets/EventBridge/Hooks/Registry), content registry family, creator-owned component layer + Gatherable example, runnable demo place, Rojo/Wally/Rokit config, and release CI. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
28 lines
585 B
YAML
28 lines
585 B
YAML
name: Release
|
|
|
|
# Build the drop-in .rbxm from source on every version tag and attach it to the release.
|
|
on:
|
|
push:
|
|
tags:
|
|
- "v*"
|
|
|
|
permissions:
|
|
contents: write
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
|
|
- name: Install toolchain (rojo via rokit)
|
|
uses: CompeyDev/setup-rokit@v0.1.2
|
|
|
|
- name: Build engine model
|
|
run: rojo build default.project.json --output SurvivorCore.rbxm
|
|
|
|
- name: Attach to release
|
|
uses: softprops/action-gh-release@v2
|
|
with:
|
|
files: SurvivorCore.rbxm
|