From 0c3921feb56e4a36e3e986a03c64647677cedd0b Mon Sep 17 00:00:00 2001 From: lacvet Date: Fri, 3 Apr 2026 18:29:00 +0900 Subject: [PATCH] ci: add release gate workflow for main --- .github/workflows/release-gate.yml | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 .github/workflows/release-gate.yml diff --git a/.github/workflows/release-gate.yml b/.github/workflows/release-gate.yml new file mode 100644 index 0000000..07a82d5 --- /dev/null +++ b/.github/workflows/release-gate.yml @@ -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