ci: add release gate workflow for main
Some checks failed
Release Gate / gate (push) Has been cancelled

This commit is contained in:
2026-04-03 18:29:00 +09:00
parent 1d6c27fb1c
commit 0c3921feb5

28
.github/workflows/release-gate.yml vendored Normal file
View File

@@ -0,0 +1,28 @@
name: Release Gate
on:
push:
branches:
- main
pull_request:
branches:
- main
workflow_dispatch:
jobs:
gate:
runs-on: windows-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: 8.0.x
- name: Run Release Gate
shell: pwsh
run: |
powershell -ExecutionPolicy Bypass -File .\scripts\release-gate.ps1