-
Notifications
You must be signed in to change notification settings - Fork 0
197 lines (167 loc) · 5.89 KB
/
Copy pathauto-release.yml
File metadata and controls
197 lines (167 loc) · 5.89 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
name: Auto Release
on:
push:
branches: [main]
permissions:
contents: write
jobs:
version:
name: Determine Version
runs-on: ubuntu-latest
# Skip version bump commits to avoid infinite loops
if: "!startsWith(github.event.head_commit.message, 'chore(release):')"
outputs:
tag: ${{ steps.version.outputs.next }}
version: ${{ steps.version.outputs.version }}
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup Bun
uses: oven-sh/setup-bun@v2
with:
bun-version: latest
- name: Install Just
uses: extractions/setup-just@v2
- name: Determine next version
id: version
run: |
latest_tag=$(git describe --tags --abbrev=0 2>/dev/null || echo "v0.0.0")
echo "latest=$latest_tag" >> "$GITHUB_OUTPUT"
version="${latest_tag#v}"
IFS='.' read -r major minor patch <<< "$version"
commits=$(git log "$latest_tag"..HEAD --pretty=format:"%s" 2>/dev/null || git log --pretty=format:"%s")
if echo "$commits" | grep -qE "^feat(\(.+\))?!:|^fix(\(.+\))?!:|^refactor(\(.+\))?!:|BREAKING CHANGE"; then
major=$((major + 1))
minor=0
patch=0
elif echo "$commits" | grep -qE "^feat(\(.+\))?:"; then
minor=$((minor + 1))
patch=0
else
patch=$((patch + 1))
fi
next="v${major}.${minor}.${patch}"
echo "next=$next" >> "$GITHUB_OUTPUT"
echo "version=${major}.${minor}.${patch}" >> "$GITHUB_OUTPUT"
echo "Next version: $next (from $latest_tag)"
- name: Update versions
run: |
bun install --frozen-lockfile
just set-version ${{ steps.version.outputs.version }}
- name: Verify
run: |
just typecheck
just test
- name: Commit and tag
env:
TAG: ${{ steps.version.outputs.next }}
VERSION: ${{ steps.version.outputs.version }}
run: |
git config user.name "github-actions[bot]"
git config user.email "github-actions[bot]@users.noreply.github.com"
git add package.json src/cli/index.ts skills/*/SKILL.md .claude-plugin/plugin.json
git commit -m "chore(release): bump version to v$VERSION"
git tag -a "$TAG" -m "Release $TAG"
git push origin main --follow-tags
build:
name: Build ${{ matrix.target }}
needs: version
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
include:
- target: linux-x64
os: ubuntu-latest
artifact: upkeep-linux-x64
- target: linux-arm64
os: ubuntu-latest
artifact: upkeep-linux-arm64
- target: darwin-arm64
os: macos-latest
artifact: upkeep-darwin-arm64
- target: darwin-x64
os: macos-latest
artifact: upkeep-darwin-x64
- target: windows-x64
os: windows-latest
artifact: upkeep-windows-x64.exe
steps:
- name: Checkout
uses: actions/checkout@v4
with:
ref: ${{ needs.version.outputs.tag }}
- name: Setup Bun
uses: oven-sh/setup-bun@v2
with:
bun-version: latest
- name: Install dependencies
run: bun install --frozen-lockfile
- name: Build binary
run: bun run build:${{ matrix.target }}
- name: Upload artifact
uses: actions/upload-artifact@v4
with:
name: ${{ matrix.artifact }}
path: dist/${{ matrix.artifact }}
if-no-files-found: error
release:
name: Create Release
needs: [version, build]
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
ref: ${{ needs.version.outputs.tag }}
fetch-depth: 0
- name: Download all artifacts
uses: actions/download-artifact@v4
with:
path: artifacts
- name: Package release archives
env:
VERSION: ${{ needs.version.outputs.version }}
run: |
mkdir -p release
# Tar+gzip each Unix binary as `upkeep` inside the archive, named
# upkeep_<version>_<os>_<arch>.tar.gz with Homebrew-style arch tokens.
archive() {
src="$1"; os="$2"; arch="$3"
cp "$src" upkeep
chmod +x upkeep
tar -czf "release/upkeep_${VERSION}_${os}_${arch}.tar.gz" upkeep
rm upkeep
}
archive artifacts/upkeep-linux-x64/upkeep-linux-x64 linux amd64
archive artifacts/upkeep-linux-arm64/upkeep-linux-arm64 linux arm64
archive artifacts/upkeep-darwin-x64/upkeep-darwin-x64 darwin amd64
archive artifacts/upkeep-darwin-arm64/upkeep-darwin-arm64 darwin arm64
# Windows ships as a raw .exe — Homebrew does not consume it.
cp artifacts/upkeep-windows-x64.exe/upkeep-windows-x64.exe \
"release/upkeep_${VERSION}_windows_amd64.exe"
# checksums.txt lists the sha256 of each tarball; the Homebrew tap
# downloads this to render per-platform url + sha256.
( cd release && sha256sum upkeep_"${VERSION}"_*.tar.gz > checksums.txt )
ls -la release/
cat release/checksums.txt
- name: Generate changelog
uses: orhun/git-cliff-action@v4
id: changelog
with:
config: cliff.toml
args: --latest --strip header
env:
OUTPUT: CHANGELOG.md
- name: Create GitHub Release
uses: softprops/action-gh-release@v2
with:
tag_name: ${{ needs.version.outputs.tag }}
files: |
release/*.tar.gz
release/*.exe
release/checksums.txt
body: ${{ steps.changelog.outputs.content }}
draft: false
prerelease: false