Skip to content

Commit

Permalink
Merge pull request #195 from stefanotorresi/compress-binaries
Browse files Browse the repository at this point in the history
compress binaries after having built them, for greener artifacts
  • Loading branch information
stefanotorresi authored May 28, 2021
2 parents 96264e8 + 9033554 commit d319147
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/exporter-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,12 @@ jobs:
run: make test
- name: build
run: make -j4 build-all
- name: compress
run: |
set -x
for FILE in build/bin/*; do
gzip $FILE
done
- uses: actions/upload-artifact@v2
with:
name: ha_cluster_exporter
Expand Down

0 comments on commit d319147

Please sign in to comment.