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
|
name: Release
on:
push:
tags:
- "v*"
workflow_dispatch:
env:
CARGO_TERM_COLOR: always
jobs:
# ββ Read version from Cargo.toml βββββββββββββββββββββββββββββββββββββββββββββ
prepare:
name: Prepare release tag
runs-on: ubuntu-latest
outputs:
tag: ${{ steps.tag.outputs.tag }}
steps:
- uses: actions/checkout@v4
- name: Extract version
id: tag
run: |
VERSION=$(grep '^version' Cargo.toml | head -1 | sed 's/.*"\(.*\)"/\1/')
echo "tag=v${VERSION}" >> $GITHUB_OUTPUT
echo "Release tag: v${VERSION}"
# ββ Linux stable targets βββββββββββββββββββββββββββββββββββββββββββββββββββββ
build-linux:
name: Build ${{ matrix.name }}
needs: prepare
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
include:
- target: x86_64-unknown-linux-musl
name: linux-amd64
- target: aarch64-unknown-linux-musl
name: linux-arm64
steps:
- uses: actions/checkout@v4
- name: Install Rust
uses: dtolnay/rust-toolchain@stable
with:
targets: ${{ matrix.target }}
- name: Cache
uses: Swatinem/rust-cache@v2
with:
key: ${{ matrix.target }}
- name: Install cross
run: |
curl -sSL \
https://github.com/cross-rs/cross/releases/latest/download/cross-x86_64-unknown-linux-gnu.tar.gz \
| tar xz -C /usr/local/bin cross
- name: Build
run: cross build --release --target ${{ matrix.target }}
- name: Stage binary
run: cp target/${{ matrix.target }}/release/leakguard leakguard-${{ matrix.name }}
- name: Upload artifact
uses: actions/upload-artifact@v4
with:
name: leakguard-${{ matrix.name }}
path: leakguard-${{ matrix.name }}
# ββ Windows (native MSVC runner) βββββββββββββββββββββββββββββββββββββββββββββ
build-windows:
name: Build windows-amd64
needs: prepare
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
- name: Install Rust
uses: dtolnay/rust-toolchain@stable
with:
targets: x86_64-pc-windows-msvc
- name: Cache
uses: Swatinem/rust-cache@v2
- name: Build
run: cargo build --release --target x86_64-pc-windows-msvc
- name: Stage binary
run: cp target/x86_64-pc-windows-msvc/release/leakguard.exe leakguard-windows-amd64.exe
- name: Upload artifact
uses: actions/upload-artifact@v4
with:
name: leakguard-windows-amd64
path: leakguard-windows-amd64.exe
# ββ macOS ARM64 βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
build-macos:
name: Build macos-arm64
needs: prepare
runs-on: macos-latest
steps:
- uses: actions/checkout@v4
- name: Install Rust
uses: dtolnay/rust-toolchain@stable
with:
targets: aarch64-apple-darwin
- name: Cache
uses: Swatinem/rust-cache@v2
- name: Build
run: cargo build --release --target aarch64-apple-darwin
- name: Stage binary
run: cp target/aarch64-apple-darwin/release/leakguard leakguard-macos-arm64
- name: Upload artifact
uses: actions/upload-artifact@v4
with:
name: leakguard-macos-arm64
path: leakguard-macos-arm64
# ββ Build Python Wheels βββββββββββββββββββββββββββββββββββββββββββββββββββββββ
build-wheels:
name: Wheel (${{ matrix.target }})
needs: prepare
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
include:
- os: ubuntu-latest
target: x86_64-unknown-linux-gnu
- os: ubuntu-latest
target: aarch64-unknown-linux-gnu
- os: windows-latest
target: x86_64-pc-windows-msvc
- os: macos-latest
target: universal2-apple-darwin
steps:
- uses: actions/checkout@v4
- name: Build wheel
uses: PyO3/maturin-action@v1
with:
target: ${{ matrix.target }}
args: --release --out dist
manylinux: auto
- name: Upload wheel
uses: actions/upload-artifact@v4
with:
name: wheels-${{ matrix.target }}
path: dist/*.whl
# ββ Publish to PyPI βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
publish-pypi:
name: Publish to PyPI
needs: [prepare, build-wheels]
runs-on: ubuntu-latest
environment: pypi
permissions:
id-token: write # required for OIDC trusted publishing
steps:
- name: Download all wheels
uses: actions/download-artifact@v4
with:
pattern: wheels-*
merge-multiple: true
path: dist
- name: Publish to PyPI
uses: pypa/gh-action-pypi-publish@release/v1
# ββ Create GitHub Release ββββββββββββββββββββββββββββββββββββββββββββββββββββ
release:
name: Create Release
needs: [prepare, build-linux, build-windows, build-macos]
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- uses: actions/checkout@v4
- name: Download all artifacts
uses: actions/download-artifact@v4
with:
path: dist
merge-multiple: true
- name: Show binaries
run: ls -lh dist/
- name: Create Release
uses: softprops/action-gh-release@v2
with:
tag_name: ${{ needs.prepare.outputs.tag }}
name: leakguard ${{ needs.prepare.outputs.tag }}
generate_release_notes: true
body: |
## Install
### via pip (recommended)
```bash
pip install leakguard-secret-leaks
leakguard check .
```
### Manual download
| Platform | File |
|----------|------|
| Linux x86_64 | `leakguard-linux-amd64` |
| Linux ARM64 | `leakguard-linux-arm64` |
| Windows x86_64 | `leakguard-windows-amd64.exe` |
| macOS Apple Silicon | `leakguard-macos-arm64` |
```bash
chmod +x leakguard-linux-amd64
sudo mv leakguard-linux-amd64 /usr/local/bin/leakguard
```
files: dist/*
|