Skip to content

Commit 08b9d5a

Browse files
committed
ci: add missing plugins
1 parent 2603e6e commit 08b9d5a

File tree

1 file changed

+15
-1
lines changed

1 file changed

+15
-1
lines changed

.github/workflows/release.yml

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,9 +109,13 @@ jobs:
109109
if [[ "${{ runner.os }}" == "Linux" ]]; then
110110
strip target/${{ matrix.target }}/release/repos
111111
strip target/${{ matrix.target }}/release/repos-health
112+
strip target/${{ matrix.target }}/release/repos-review
113+
strip target/${{ matrix.target }}/release/repos-fix
112114
else
113115
strip -x target/${{ matrix.target }}/release/repos
114116
strip -x target/${{ matrix.target }}/release/repos-health
117+
strip -x target/${{ matrix.target }}/release/repos-review
118+
strip -x target/${{ matrix.target }}/release/repos-fix
115119
fi
116120
117121
- name: Upload artifacts
@@ -122,6 +126,8 @@ jobs:
122126
target/${{ matrix.target }}/release/repos
123127
target/${{ matrix.target }}/release/repos-health
124128
target/${{ matrix.target }}/release/repos-validate
129+
target/${{ matrix.target }}/release/repos-review
130+
target/${{ matrix.target }}/release/repos-fix
125131
126132
# 4. Create the universal macOS binary from the previously built artifacts.
127133
# This job is very fast as it does not re-compile anything.
@@ -146,7 +152,9 @@ jobs:
146152
lipo -create -output repos arm64/repos x86_64/repos
147153
lipo -create -output repos-health arm64/repos-health x86_64/repos-health
148154
lipo -create -output repos-validate arm64/repos-validate x86_64/repos-validate
149-
strip -x repos repos-health repos-validate
155+
lipo -create -output repos-review arm64/repos-review x86_64/repos-review
156+
lipo -create -output repos-fix arm64/repos-fix x86_64/repos-fix
157+
strip -x repos repos-health repos-validate repos-review repos-fix
150158
151159
- name: Upload universal artifact
152160
uses: actions/upload-artifact@v6
@@ -156,6 +164,8 @@ jobs:
156164
repos
157165
repos-health
158166
repos-validate
167+
repos-review
168+
repos-fix
159169
160170
# 5. Create the GitHub Release and upload all artifacts.
161171
# This is the final publishing step.
@@ -191,6 +201,8 @@ jobs:
191201
tar -czf "repos-${VERSION}-${suffix}.tar.gz" -C "$dir" repos
192202
tar -czf "repos-health-${VERSION}-${suffix}.tar.gz" -C "$dir" repos-health
193203
tar -czf "repos-validate-${VERSION}-${suffix}.tar.gz" -C "$dir" repos-validate
204+
tar -czf "repos-review-${VERSION}-${suffix}.tar.gz" -C "$dir" repos-review
205+
tar -czf "repos-fix-${VERSION}-${suffix}.tar.gz" -C "$dir" repos-fix
194206
fi
195207
done
196208
@@ -199,6 +211,8 @@ jobs:
199211
tar -czf "repos-${VERSION}-macos-universal.tar.gz" -C "dist/build-artifacts-macos-universal" repos
200212
tar -czf "repos-health-${VERSION}-macos-universal.tar.gz" -C "dist/build-artifacts-macos-universal" repos-health
201213
tar -czf "repos-validate-${VERSION}-macos-universal.tar.gz" -C "dist/build-artifacts-macos-universal" repos-validate
214+
tar -czf "repos-review-${VERSION}-macos-universal.tar.gz" -C "dist/build-artifacts-macos-universal" repos-review
215+
tar -czf "repos-fix-${VERSION}-macos-universal.tar.gz" -C "dist/build-artifacts-macos-universal" repos-fix
202216
fi
203217
204218
# List final assets

0 commit comments

Comments
 (0)