-
Notifications
You must be signed in to change notification settings - Fork 21
318 lines (267 loc) · 11.5 KB
/
release.yml
File metadata and controls
318 lines (267 loc) · 11.5 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
311
312
313
314
315
316
317
318
name: Release
on:
push:
tags:
- 'v*.*.*' # Trigger on version tags like v1.0.0, v0.1.0, etc.
workflow_dispatch: # Allow manual triggers
permissions:
contents: write # Required for creating releases
packages: write # Required for pushing to GHCR
id-token: write # Required for cosign keyless signing
jobs:
build-and-release:
name: Build and Release
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955 # v4
- name: Setup Node.js
uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4
with:
node-version: '22'
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Build TypeScript
run: npm run build
- name: Extract version from tag
id: version_early
run: |
if [ "${{ github.event_name }}" = "workflow_dispatch" ]; then
VERSION=$(node -p "require('./package.json').version")
echo "version=v$VERSION" >> $GITHUB_OUTPUT
echo "version_number=$VERSION" >> $GITHUB_OUTPUT
else
VERSION="${GITHUB_REF#refs/tags/}"
VERSION_NUMBER="${VERSION#v}"
echo "version=$VERSION" >> $GITHUB_OUTPUT
echo "version_number=$VERSION_NUMBER" >> $GITHUB_OUTPUT
fi
- name: Log in to GitHub Container Registry
uses: docker/login-action@5e57cd118135c172c3672efd75eb46360885c0ef # v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@8d2750c68a42422c14e847fe6c8ac0403b4cbd6f # v3
- name: Install cosign
uses: sigstore/cosign-installer@59acb6260d9c0ba8f4a2f9d9b48431a222b68e20 # v3.5.0
- name: Build and push Squid image
id: build_squid
uses: docker/build-push-action@ca052bb54ab0790a636c9b5f226502c73d547a25 # v5
with:
context: ./containers/squid
push: true
tags: |
ghcr.io/${{ github.repository }}/squid:${{ steps.version_early.outputs.version_number }}
ghcr.io/${{ github.repository }}/squid:latest
cache-from: type=gha
cache-to: type=gha,mode=max
- name: Sign Squid image with cosign
run: |
cosign sign --yes \
ghcr.io/${{ github.repository }}/squid@${{ steps.build_squid.outputs.digest }}
- name: Generate SBOM for Squid image
uses: anchore/sbom-action@d94f46e13c6c62f59525ac9a1e147a99dc0b9bf5 # v0.17.0
with:
image: ghcr.io/${{ github.repository }}/squid@${{ steps.build_squid.outputs.digest }}
format: spdx-json
output-file: squid-sbom.spdx.json
- name: Attest SBOM for Squid image
run: |
cosign attest --yes \
--predicate squid-sbom.spdx.json \
--type spdxjson \
ghcr.io/${{ github.repository }}/squid@${{ steps.build_squid.outputs.digest }}
- name: Build and push Agent image
id: build_agent
uses: docker/build-push-action@ca052bb54ab0790a636c9b5f226502c73d547a25 # v5
with:
context: ./containers/agent
push: true
tags: |
ghcr.io/${{ github.repository }}/agent:${{ steps.version_early.outputs.version_number }}
ghcr.io/${{ github.repository }}/agent:latest
# Disable cache for agent image to ensure security-critical packages
# (like libcap2-bin for capability dropping) are always freshly installed
no-cache: true
- name: Sign Agent image with cosign
run: |
cosign sign --yes \
ghcr.io/${{ github.repository }}/agent@${{ steps.build_agent.outputs.digest }}
- name: Generate SBOM for Agent image
uses: anchore/sbom-action@d94f46e13c6c62f59525ac9a1e147a99dc0b9bf5 # v0.17.0
with:
image: ghcr.io/${{ github.repository }}/agent@${{ steps.build_agent.outputs.digest }}
format: spdx-json
output-file: agent-sbom.spdx.json
- name: Attest SBOM for Agent image
run: |
cosign attest --yes \
--predicate agent-sbom.spdx.json \
--type spdxjson \
ghcr.io/${{ github.repository }}/agent@${{ steps.build_agent.outputs.digest }}
# Build agent-act image with catthehacker/ubuntu:act-24.04 base for GitHub Actions parity
- name: Build and push Agent-Act image
id: build_agent_act
uses: docker/build-push-action@ca052bb54ab0790a636c9b5f226502c73d547a25 # v5
with:
context: ./containers/agent
push: true
tags: |
ghcr.io/${{ github.repository }}/agent-act:${{ steps.version_early.outputs.version_number }}
ghcr.io/${{ github.repository }}/agent-act:latest
build-args: |
BASE_IMAGE=ghcr.io/catthehacker/ubuntu:act-24.04
no-cache: true
- name: Sign Agent-Act image with cosign
run: |
cosign sign --yes \
ghcr.io/${{ github.repository }}/agent-act@${{ steps.build_agent_act.outputs.digest }}
- name: Generate SBOM for Agent-Act image
uses: anchore/sbom-action@d94f46e13c6c62f59525ac9a1e147a99dc0b9bf5 # v0.17.0
with:
image: ghcr.io/${{ github.repository }}/agent-act@${{ steps.build_agent_act.outputs.digest }}
format: spdx-json
output-file: agent-act-sbom.spdx.json
- name: Attest SBOM for Agent-Act image
run: |
cosign attest --yes \
--predicate agent-act-sbom.spdx.json \
--type spdxjson \
ghcr.io/${{ github.repository }}/agent-act@${{ steps.build_agent_act.outputs.digest }}
- name: Install pkg for binary creation
run: npm install -g pkg
- name: Create binaries
run: |
mkdir -p release
# Create standalone executable for Linux
pkg . \
--targets node18-linux-x64 \
--output release/awf-linux-x64
# Verify the binary was created
echo "=== Contents of release directory ==="
ls -lh release/
echo "=== Verifying binary ==="
test -f release/awf-linux-x64 && echo "✓ Binary exists at release/awf-linux-x64" || echo "✗ Binary NOT found!"
file release/awf-linux-x64
- name: Smoke test binary
run: |
npx tsx scripts/ci/smoke-test-binary.ts \
release/awf-linux-x64 \
${{ steps.version_early.outputs.version_number }}
- name: Create tarball for npm package
run: |
npm pack
mv *.tgz release/awf.tgz
- name: Generate checksums
run: |
cd release
sha256sum * > checksums.txt
- name: Get previous release tag
id: previous_tag
run: |
set -euo pipefail
CURRENT_TAG="${{ steps.version_early.outputs.version }}"
# Use git tags directly (more reliable than gh release list)
# Get the most recent tag that is not the current tag
PREVIOUS_TAG=$(git tag --sort=-version:refname | grep -v "^${CURRENT_TAG}$" | head -n1 || echo "")
echo "previous_tag=$PREVIOUS_TAG" >> $GITHUB_OUTPUT
echo "Previous tag: $PREVIOUS_TAG (current: $CURRENT_TAG)"
- name: Generate changelog from commits
id: changelog
run: |
set -euo pipefail
CURRENT_TAG="${{ steps.version_early.outputs.version }}"
PREVIOUS_TAG="${{ steps.previous_tag.outputs.previous_tag }}"
echo "Generating changelog from $PREVIOUS_TAG to $CURRENT_TAG"
# Generate changelog using GitHub's API
if [ -n "$PREVIOUS_TAG" ]; then
CHANGELOG=$(gh api repos/${{ github.repository }}/releases/generate-notes \
-f tag_name="$CURRENT_TAG" \
-f previous_tag_name="$PREVIOUS_TAG" \
--jq '.body' 2>/dev/null || echo "")
else
# First release - try API without previous tag
CHANGELOG=$(gh api repos/${{ github.repository }}/releases/generate-notes \
-f tag_name="$CURRENT_TAG" \
--jq '.body' 2>/dev/null || echo "")
fi
# If API call failed, fall back to git log
if [ -z "$CHANGELOG" ]; then
echo "GitHub API failed, falling back to git log"
if [ -n "$PREVIOUS_TAG" ]; then
CHANGELOG=$(git log --oneline --pretty=format:"* %s (%h)" "$PREVIOUS_TAG..HEAD" 2>/dev/null || echo "* Initial release")
else
# First release - get all commits (no arbitrary limit)
CHANGELOG=$(git log --oneline --pretty=format:"* %s (%h)" 2>/dev/null || echo "* Initial release")
fi
fi
# Write changelog to file for multiline handling
echo "$CHANGELOG" > changelog_body.md
# Validate changelog was generated
if [ ! -s changelog_body.md ]; then
echo "Error: Changelog generation failed or produced empty output"
exit 1
fi
echo "Changelog generated successfully ($(wc -l < changelog_body.md) lines)"
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Generate CLI help output
id: cli_help
run: |
set -euo pipefail
# Generate CLI help from the built binary
node dist/cli.js --help > cli_help.txt
# Validate CLI help was generated
if [ ! -s cli_help.txt ]; then
echo "Error: CLI help generation failed or produced empty output"
exit 1
fi
echo "CLI help generated ($(wc -l < cli_help.txt) lines):"
cat cli_help.txt
- name: Create Release Notes
id: release_notes
env:
VERSION: ${{ steps.version_early.outputs.version }}
VERSION_NUMBER: ${{ steps.version_early.outputs.version_number }}
REPOSITORY: ${{ github.repository }}
run: |
set -euo pipefail
# Use Node.js script for safe template substitution
# (avoids shell injection issues with special characters)
node scripts/generate-release-notes.js \
changelog_body.md \
cli_help.txt \
release_notes.md
# Validate output was generated
if [ ! -s release_notes.md ]; then
echo "Error: Release notes generation failed"
exit 1
fi
# Cleanup temp files
rm -f changelog_body.md cli_help.txt
echo "Release notes preview (first 20 lines):"
head -20 release_notes.md
- name: Create GitHub Release
uses: softprops/action-gh-release@26994186c0ac3ef5cae75ac16aa32e8153525f77 # v1
with:
tag_name: ${{ steps.version_early.outputs.version }}
name: Release ${{ steps.version_early.outputs.version }}
body_path: release_notes.md
draft: false
prerelease: ${{ contains(steps.version_early.outputs.version, 'alpha') || contains(steps.version_early.outputs.version, 'beta') || contains(steps.version_early.outputs.version, 'rc') }}
files: |
release/awf-linux-x64
release/awf.tgz
release/checksums.txt
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Upload artifacts (for debugging)
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4
if: always()
with:
name: release-artifacts
path: release/
retention-days: 7