Skip to content

Implemented CI workflow #5

Implemented CI workflow

Implemented CI workflow #5

Workflow file for this run

name: Code Mods
on:
push:
branches: [ main ]
jobs:
build:
name: ${{matrix.configuration}}
runs-on: windows-2025-vs2026
strategy:
matrix:
configuration: [ Debug, Release ]
steps:
- name: Clone Code-Mods
uses: actions/checkout@v6
with:
submodules: true
- name: Install .NET SDKs
uses: actions/setup-dotnet@v5
with:
dotnet-version: 10.0.x
- name: Build Code-Mods
working-directory: ${{github.workspace}}
run: ./Build.ps1 -Archive -BlockedSolutions "Project '06" -Configuration "${{matrix.configuration}}" -Clean
- name: Upload Code-Mods Artifacts
uses: actions/upload-artifact@v4
with:
name: Code-Mods-${{matrix.configuration}}
path: ${{github.workspace}}/Artifacts/*/*.zip