-
Notifications
You must be signed in to change notification settings - Fork 0
247 lines (208 loc) · 6.97 KB
/
release.yml
File metadata and controls
247 lines (208 loc) · 6.97 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
name: Release
on:
push:
tags:
- 'v*'
permissions:
contents: write
jobs:
build:
name: Build (${{ matrix.target }})
runs-on: ${{ matrix.runner }}
strategy:
fail-fast: false
matrix:
include:
- target: aarch64-apple-darwin
runner: macos-14
npm-pkg: getapi-cli-darwin-arm64
cross: false
- target: x86_64-apple-darwin
runner: macos-14
npm-pkg: getapi-cli-darwin-x64
cross: false
- target: x86_64-unknown-linux-gnu
runner: ubuntu-latest
npm-pkg: getapi-cli-linux-x64
cross: false
- target: aarch64-unknown-linux-gnu
runner: ubuntu-latest
npm-pkg: getapi-cli-linux-arm64
cross: true
- target: x86_64-pc-windows-msvc
runner: windows-latest
npm-pkg: getapi-cli-win32-x64
cross: false
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
if: ${{ !matrix.cross }}
with:
targets: ${{ matrix.target }}
- uses: Swatinem/rust-cache@v2
with:
key: ${{ matrix.target }}
- name: Install cross
if: ${{ matrix.cross }}
run: cargo install cross --git https://github.com/cross-rs/cross
- name: Build binary
run: ${{ matrix.cross && 'cross' || 'cargo' }} build --release --target ${{ matrix.target }}
- name: Prepare artifacts (Unix)
if: runner.os != 'Windows'
run: |
BIN="target/${{ matrix.target }}/release/getapi"
chmod +x "$BIN"
# Raw binary for npm
mkdir -p npm-bin
cp "$BIN" npm-bin/getapi
# Archive for GitHub Release
ARCHIVE="getapi-${{ matrix.target }}.tar.gz"
tar czf "$ARCHIVE" -C "target/${{ matrix.target }}/release" getapi
- name: Prepare artifacts (Windows)
if: runner.os == 'Windows'
shell: pwsh
run: |
$BIN = "target/${{ matrix.target }}/release/getapi.exe"
# Raw binary for npm
New-Item -ItemType Directory -Force -Path npm-bin
Copy-Item $BIN npm-bin/getapi.exe
# Archive for GitHub Release
Compress-Archive -Path $BIN -DestinationPath "getapi-${{ matrix.target }}.zip"
- name: Upload binary artifact (npm)
uses: actions/upload-artifact@v4
with:
name: bin-${{ matrix.npm-pkg }}
path: npm-bin/
- name: Upload release archive
uses: actions/upload-artifact@v4
with:
name: archive-${{ matrix.target }}
path: getapi-${{ matrix.target }}.*
github-release:
needs: build
runs-on: ubuntu-latest
steps:
- uses: actions/download-artifact@v4
with:
pattern: archive-*
merge-multiple: true
- name: Create GitHub Release
uses: softprops/action-gh-release@v2
with:
generate_release_notes: true
files: |
getapi-*.tar.gz
getapi-*.zip
publish-crates:
needs: build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
- name: Publish to crates.io
run: cargo publish --token ${{ secrets.CARGO_REGISTRY_TOKEN }}
publish-npm:
needs: build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: '20'
registry-url: 'https://registry.npmjs.org'
- name: Download all binary artifacts
uses: actions/download-artifact@v4
with:
pattern: bin-*
path: artifacts
- name: Stage binaries into platform packages
run: |
PLATFORMS=(
"getapi-cli-darwin-arm64"
"getapi-cli-darwin-x64"
"getapi-cli-linux-x64"
"getapi-cli-linux-arm64"
"getapi-cli-win32-x64"
)
for pkg in "${PLATFORMS[@]}"; do
mkdir -p "npm/${pkg}/bin"
cp artifacts/bin-${pkg}/* "npm/${pkg}/bin/"
# chmod +x on Unix binaries
if [[ "$pkg" != *"win32"* ]]; then
chmod +x "npm/${pkg}/bin/getapi"
fi
done
- name: Publish platform packages
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
run: |
PLATFORMS=(
"getapi-cli-darwin-arm64"
"getapi-cli-darwin-x64"
"getapi-cli-linux-x64"
"getapi-cli-linux-arm64"
"getapi-cli-win32-x64"
)
failed=""
for pkg in "${PLATFORMS[@]}"; do
echo "Publishing ${pkg}..."
cd "npm/${pkg}"
if ! npm publish --access public; then
echo "::warning::Failed to publish ${pkg}"
failed="${failed} ${pkg}"
fi
cd ../..
done
if [ -n "$failed" ]; then
echo "::warning::Some platform packages failed to publish:${failed}"
fi
- name: Publish shim package
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
run: |
cd npm/getapi-cli
npm publish --access public
update-homebrew:
needs: github-release
runs-on: ubuntu-latest
steps:
- name: Update Homebrew formula
env:
COMMITTER_TOKEN: ${{ secrets.HOMEBREW_TAP_TOKEN }}
run: |
VERSION="${GITHUB_REF_NAME#v}"
ARM_URL="https://github.com/m2de/getapi/releases/download/${GITHUB_REF_NAME}/getapi-aarch64-apple-darwin.tar.gz"
X64_URL="https://github.com/m2de/getapi/releases/download/${GITHUB_REF_NAME}/getapi-x86_64-apple-darwin.tar.gz"
ARM_SHA=$(curl -sL "$ARM_URL" | sha256sum | cut -d' ' -f1)
X64_SHA=$(curl -sL "$X64_URL" | sha256sum | cut -d' ' -f1)
cat > /tmp/getapi.rb <<FORMULA
class Getapi < Formula
desc "Guided, interactive walkthroughs for setting up developer API credentials"
homepage "https://github.com/m2de/getapi"
version "${VERSION}"
license "MIT"
on_arm do
url "${ARM_URL}"
sha256 "${ARM_SHA}"
end
on_intel do
url "${X64_URL}"
sha256 "${X64_SHA}"
end
def install
bin.install "getapi"
end
test do
assert_match "getapi", shell_output("#{bin}/getapi --help")
end
end
FORMULA
# Push to tap repo
git clone "https://x-access-token:${COMMITTER_TOKEN}@github.com/m2de/homebrew-tap.git" /tmp/tap
cp /tmp/getapi.rb /tmp/tap/Formula/getapi.rb
cd /tmp/tap
git config user.name "github-actions[bot]"
git config user.email "github-actions[bot]@users.noreply.github.com"
git add Formula/getapi.rb
git commit -m "Update getapi to ${VERSION}"
git push