forked from snowdreamtech/base
-
Notifications
You must be signed in to change notification settings - Fork 0
310 lines (278 loc) Β· 11.8 KB
/
Copy pathcd.yml
File metadata and controls
310 lines (278 loc) Β· 11.8 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
# Copyright (c) 2026 SnowdreamTech. All rights reserved.
# Licensed under the MIT License. See LICENSE file in the project root for full license information.
---
# CD (Continuous Deployment)
# Purpose: Unified release pipeline covering Project Verification and Automated Release Orchestration.
# Trigger: Every push to the default branch (main).
# Design:
# - Sequential execution: Verify -> Release Please.
# - Atomic: Release only happens if verification passes.
# - Secure: Eliminates workflow_run risks by using internal job dependencies.
name: "π Continuous Delivery"
"on":
push:
branches:
- "main"
- "dev"
workflow_dispatch:
permissions:
contents: read
env:
UNIRTM_LOCKED: 1
# Opt into Node.js 24 now ahead of GitHub's June 16, 2026 forced migration.
# See: https://github.blog/changelog/2025-09-19-deprecation-of-node-20-on-github-actions-runners/
FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: "1"
jobs:
# 1. Project Verification Stage (Verify)
verify:
name: "π Pre-flight Integrity Check (${{ matrix.os }})"
runs-on: ${{ matrix.os }}
environment: development
concurrency:
group: verify-${{ github.workflow }}-${{ matrix.os }}-${{ github.ref }}
cancel-in-progress: ${{ github.event_name == 'pull_request' }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
permissions:
contents: read
statuses: write
security-events: write
timeout-minutes: 50
env:
PYTHONUTF8: 1
STEP_SECURITY_DISABLE: ${{ matrix.os != 'ubuntu-latest' }}
steps:
- name: "π Checkout Repository Code"
uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
with:
persist-credentials: false
fetch-depth: 0
- name: "β‘ Setup UniRTM"
uses: snowdreamtech/setup-unirtm@663cc55933eafea30cd63f43e837cecd4a587f45 # v0.7.0
with:
unirtm-version: "0.25.8"
install: true
trust: true
env:
GITHUB_TOKEN: ${{ secrets.WORKFLOW_SECRET || secrets.GITHUB_TOKEN }}
- name: "π Validate Commit Convention (Commitlint)"
shell: sh
run: |
unirtm exec -- commitlint --last --verbose
- name: "π§ͺ Execute Full Quality & Safety Verification"
shell: sh
run: |
unirtm run verify
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
PYTHONUTF8: 1
TRIVY_CACHE_DIR: .trivycache
UNIRTM_YES: 1
# - name: "π§ͺ Execute Shell Tests (Bats)"
# if: matrix.os != 'windows-latest'
# shell: sh
# run: |
# unirtm run test:shell
# env:
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
# UNIRTM_YES: 1
#
# - name: "π§ͺ Execute PowerShell Tests (Pester)"
# if: matrix.os == 'windows-latest'
# shell: pwsh
# run: |
# unirtm run test:powershell
# env:
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
# UNIRTM_YES: 1
- name: "β‘ Cache Documentation Links (Lychee)"
if: matrix.os == 'ubuntu-latest'
uses: actions/cache@55cc8345863c7cc4c66a329aec7e433d2d1c52a9 # v6.1.0
with:
path: .lycheecache
key: ${{ runner.os }}-lychee-${{ hashFiles('**/*.md') }}
restore-keys: |
${{ runner.os }}-lychee-
- name: "π Verify Documentation Links (Lychee)"
uses: lycheeverse/lychee-action@e7477775783ea5526144ba13e8db5eec57747ce8 # v2.9.0
if: ${{ always() && matrix.os == 'ubuntu-latest' }}
continue-on-error: true # Don't block CD on link check failures (network issues, rate limits, etc.)
with:
args: --config lychee.toml '**/*.md'
fail: true
env:
# Pass GitHub token to avoid rate limiting and access private repos
GITHUB_TOKEN: ${{ secrets.WORKFLOW_SECRET || secrets.GITHUB_TOKEN }}
- name: "π΅οΈ Detect Vulnerabilities (Trivy FS)"
uses: aquasecurity/trivy-action@ed142fd0673e97e23eac54620cfb913e5ce36c25 # v0.36.0
if: ${{ always() && matrix.os == 'ubuntu-latest' }}
env:
TRIVY_DB_REPOSITORY: "public.ecr.aws/aquasecurity/trivy-db"
TRIVY_CHECKS_BUNDLE_REPOSITORY: "public.ecr.aws/aquasecurity/trivy-checks"
with:
scan-type: "fs"
ignore-unfixed: true
format: "sarif"
output: "trivy-results.sarif"
severity: "CRITICAL,HIGH,MEDIUM,LOW"
exit-code: "1"
skip-dirs: "unirtm_data,cmd/unirtm_data"
- name: "π€ Upload Security Audit (SARIF)"
uses: github/codeql-action/upload-sarif@e4fba868fa4b1b91e1fdab776edc8cfbe6e9fb81 # v4.37.3
if: always() && matrix.os == 'ubuntu-latest'
with:
sarif_file: "trivy-results.sarif"
# 2. Release Orchestration Stage (Release Please)
release-please:
name: "π Release Orchestration"
needs: [verify]
if: github.event_name == 'push' && github.ref == 'refs/heads/main'
runs-on: ubuntu-latest
environment: internal
concurrency:
group: release-${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
permissions:
contents: write
pull-requests: write
statuses: write
security-events: write
timeout-minutes: 50
steps:
- name: "ποΈ Checkout Repository"
uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
with:
persist-credentials: false
- name: "π Orchestrate Release Lifecycle (Release Please)"
id: release
uses: googleapis/release-please-action@45996ed1f6d02564a971a2fa1b5860e934307cf7 # v5.0.0
with:
token: ${{ secrets.WORKFLOW_SECRET || secrets.GITHUB_TOKEN }}
config-file: .release-please-config.json
manifest-file: .release-please-manifest.json
target-branch: ${{ github.ref_name }}
skip-github-release: true
- name: "ποΈ Checkout Release PR Branch"
if: ${{ steps.release.outputs.pr }}
uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
with:
ref: ${{ fromJson(steps.release.outputs.pr).headBranchName }}
persist-credentials: false
- name: "π¦ Setup Node Environment (Syncing)"
if: ${{ steps.release.outputs.pr && hashFiles('package.json') != '' }}
uses: actions/setup-node@820762786026740c76f36085b0efc47a31fe5020 # v7.0.0
with:
node-version: "24"
cache: ""
- name: "π Synchronize Manifests & Lockfiles"
if: ${{ steps.release.outputs.pr && hashFiles('package.json') != '' }}
shell: sh
run: |
git config user.name "github-actions[bot]"
git config user.email "github-actions[bot]@users.noreply.github.com"
if [ -f "pnpm-lock.yaml" ]; then
pnpm install --no-frozen-lockfile
elif [ -f "yarn.lock" ]; then
yarn install --no-immutable
elif [ -f "package-lock.json" ]; then
npm install --package-lock-only
fi
git add .
git commit --signoff -m "chore(release): synchronize lockfiles for version bump" || echo "No changes to sync"
git push "https://${GITHUB_TOKEN}@github.com/${GITHUB_REPOSITORY}.git" HEAD
env:
GITHUB_TOKEN: ${{ secrets.WORKFLOW_SECRET || secrets.GITHUB_TOKEN }}
- name: "π§Ή Deduplicate CHANGELOGs"
if: ${{ steps.release.outputs.pr }}
shell: sh
run: |
git config user.name "github-actions[bot]"
git config user.email "github-actions[bot]@users.noreply.github.com"
find . -name "CHANGELOG.md" -type f | while read -r file; do
awk '
/^## \[/ {
match($0, /\[([^]]+)\]/)
ver = substr($0, RSTART+1, RLENGTH-2)
if (seen[ver] == 1) {
skip = 1
} else {
seen[ver] = 1
skip = 0
}
}
{
if (!skip) {
print $0
}
}
' "$file" > "${file}.tmp" && mv "${file}.tmp" "$file"
done
git add .
git commit --signoff -m "chore(release): deduplicate CHANGELOG headers" || echo "No changes to sync"
git push "https://${GITHUB_TOKEN}@github.com/${GITHUB_REPOSITORY}.git" HEAD
env:
GITHUB_TOKEN: ${{ secrets.WORKFLOW_SECRET || secrets.GITHUB_TOKEN }}
- name: "π Synchronize GitHub Releases"
if: "${{ startsWith(github.event.head_commit.message, 'chore(release):') || startsWith(github.event.head_commit.message, 'chore: release') }}"
shell: sh
run: |
for path in $(awk -F'"' '/":/ {print $2}' .release-please-manifest.json); do
if [ "$path" = "." ]; then
file="CHANGELOG.md"
tag_prefix="v"
else
file="${path}/CHANGELOG.md"
comp=$(awk -F'"' -v p="$path" '
$0 ~ "\"" p "\": \\{" { in_block = 1 }
in_block && $0 ~ /"component":/ {
for(i=1; i<=NF; i++) {
if($i=="component") { print $(i+2); exit }
}
}
in_block && /^ *\}/ { in_block = 0 }
' .release-please-config.json)
if [ -z "$comp" ] || [ "$comp" = "null" ]; then
comp=$(basename "$path")
fi
tag_prefix="${comp}-v"
fi
if [ ! -f "$file" ]; then continue; fi
ver=$(grep -oE '^## \[?[0-9]+\.[0-9]+\.[0-9]+[a-zA-Z0-9.-]*' "$file" | head -1 | grep -oE '[0-9]+\.[0-9]+\.[0-9]+[a-zA-Z0-9.-]*' || true)
if [ -n "$ver" ]; then
tag="${tag_prefix}${ver}"
awk '
/^## \[?[0-9]+\.[0-9]+/ {
count++
if (count == 2) exit
}
{ if (count == 1) print $0 }
' "$file" > "log.tmp.md"
echo "Recreating Git tag $tag to trigger downstream workflows..."
git tag -f "$tag"
git push "https://${GH_TOKEN}@github.com/${GITHUB_REPOSITORY}.git" --delete "refs/tags/$tag" 2>/dev/null || true
git push "https://${GH_TOKEN}@github.com/${GITHUB_REPOSITORY}.git" "refs/tags/$tag"
echo "Synchronizing GitHub Release for $tag..."
gh release create "$tag" --notes-file "log.tmp.md" 2>/dev/null || \
gh release edit "$tag" --notes-file "log.tmp.md" 2>/dev/null || \
echo "Release sync skipped or failed for $tag"
rm -f "log.tmp.md"
fi
done
# Cleanup: skip-github-release prevents release-please from updating PR labels.
# We must manually clear "autorelease: pending" on merged PRs to avoid blocking future releases.
echo "Cleaning up pending release labels..."
merged_prs=$(gh api -X GET search/issues -f q="repo:$GITHUB_REPOSITORY is:pr is:merged label:\"autorelease: pending\"" --jq '.items[].number' 2>/dev/null) || merged_prs=""
for pr in $merged_prs; do
# Validate that $pr is a number to avoid invalid CLI queries
case "$pr" in
''|*[!0-9]*) continue ;;
esac
echo "Marking PR #$pr as tagged..."
# Use REST API to avoid GraphQL scope errors (read:org) from 'gh pr edit'
gh api -X POST "repos/$GITHUB_REPOSITORY/issues/$pr/labels" -f "labels[]=autorelease: tagged" >/dev/null 2>&1 || true
gh api -X DELETE "repos/$GITHUB_REPOSITORY/issues/$pr/labels/autorelease:%20pending" >/dev/null 2>&1 || true
done
env:
GH_TOKEN: ${{ secrets.WORKFLOW_SECRET || secrets.GITHUB_TOKEN }}