Skip to content

Commit

Permalink
Change version
Browse files Browse the repository at this point in the history
  • Loading branch information
mszostok committed Dec 16, 2021
1 parent 1580b6b commit 54f6484
Showing 1 changed file with 20 additions and 12 deletions.
32 changes: 20 additions & 12 deletions .github/workflows/branch-build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -58,17 +58,25 @@ jobs:
- name: Install upx
run: sudo apt-get update -y
- name: Install upx
run: sudo apt install upx -y
run: |
# Install UPX
wget https://github.com/upx/upx/releases/download/v3.96/upx-3.96-amd64_linux.tar.xz
tar -xf upx-3.96-amd64_linux.tar.xz
# Compress files
./upx-3.96-amd64_linux/upx -V
mv ./upx-3.96-amd64_linux/upx /usr/local/bin/upx
upx -V
- name: upx version
run: upx -V
- name: Set up GoReleaser
run: go install github.com/goreleaser/[email protected]
- name: Release latest CLI
run: |
make release-latest-binaries
- name: Upload artifact
uses: actions/upload-artifact@v2
with:
name: ${{ matrix.APP }}-${{github.sha}}
path: ./bin
retention-days: 1
# - name: Set up GoReleaser
# run: go install github.com/goreleaser/[email protected]
# - name: Release latest CLI
# run: |
# make release-latest-binaries
# - name: Upload artifact
# uses: actions/upload-artifact@v2
# with:
# name: ${{ matrix.APP }}-${{github.sha}}
# path: ./bin
# retention-days: 1

0 comments on commit 54f6484

Please sign in to comment.