ci: add bounded complete release gate
This commit is contained in:
parent
0a934cf578
commit
2ac054864d
11 changed files with 772 additions and 102 deletions
38
.github/workflows/release-gate.yml
vendored
Normal file
38
.github/workflows/release-gate.yml
vendored
Normal file
|
|
@ -0,0 +1,38 @@
|
|||
name: Complete Release gate
|
||||
|
||||
on:
|
||||
pull_request:
|
||||
push:
|
||||
branches: [main]
|
||||
workflow_dispatch:
|
||||
|
||||
permissions:
|
||||
contents: read
|
||||
|
||||
jobs:
|
||||
complete-release:
|
||||
name: Complete Release suite (Windows)
|
||||
runs-on: windows-latest
|
||||
timeout-minutes: 45
|
||||
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v6
|
||||
|
||||
- name: Install pinned .NET SDK
|
||||
uses: actions/setup-dotnet@v4
|
||||
with:
|
||||
global-json-file: global.json
|
||||
|
||||
- name: Run complete bounded Release gate
|
||||
shell: pwsh
|
||||
run: ./tools/run-release-gate.ps1
|
||||
|
||||
- name: Upload Release gate evidence
|
||||
if: always()
|
||||
uses: actions/upload-artifact@v4
|
||||
with:
|
||||
name: release-gate-${{ github.run_id }}-${{ github.run_attempt }}
|
||||
if-no-files-found: error
|
||||
retention-days: 14
|
||||
path: artifacts/release-gate/
|
||||
Loading…
Add table
Add a link
Reference in a new issue