Skip to content

Commit d319147

Browse files
Merge pull request #195 from stefanotorresi/compress-binaries
compress binaries after having built them, for greener artifacts
2 parents 96264e8 + 9033554 commit d319147

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

.github/workflows/exporter-ci.yml

+6
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,12 @@ jobs:
3737
run: make test
3838
- name: build
3939
run: make -j4 build-all
40+
- name: compress
41+
run: |
42+
set -x
43+
for FILE in build/bin/*; do
44+
gzip $FILE
45+
done
4046
- uses: actions/upload-artifact@v2
4147
with:
4248
name: ha_cluster_exporter

0 commit comments

Comments
 (0)