Files
OmniNX/.github/workflows/build-all.yml
niklascfw 6bbaffee25 oc: Generate FPSLocker patches from the Warehouse submodule
Stop vendoring patches.zip and build it from masagrator's FPSLocker-Warehouse so OC packs can pick up current configs.
2026-08-15 23:11:09 +02:00

31 lines
695 B
YAML

name: Build All
on:
push:
tags:
- '*.*.*'
jobs:
build-and-release:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
with:
submodules: true
- name: Build all variants
run: bash scripts/build-all.sh
- name: Create Release
uses: softprops/action-gh-release@v1
with:
name: Release ${{ github.ref_name }}
files: |
output/OmniNX-Light-*.zip
output/OmniNX-Standard-*.zip
output/OmniNX-OC-*.zip
generate_release_notes: true
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}