Skip to content

Commit

Permalink
more verbose output
Browse files Browse the repository at this point in the history
  • Loading branch information
rostrovsky committed Oct 29, 2023
1 parent 7b03a25 commit cac1a8e
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions .github/workflows/build-and-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,20 +31,22 @@ jobs:
echo "Building Linux amd64 binary"
GOOS=linux GOARCH=amd64 go build -o na
tar -czvf ${LINUX_AMD_ARCHIVE} na
rm na
rm -v na
echo "Building Linux ARM binary"
GOOS=linux GOARCH=arm go build -o na
tar -czvf ${LINUX_ARM_ARCHIVE} na
rm na
rm -v na
echo "Building Windows amd64 binary"
GOOS=windows GOARCH=amd64 go build -o na.exe
zip ${WIN_AMD_ARCHIVE} na.exe
rm na.exe
rm -v na.exe
ls -lah
- name: Upload binaries to artifacts (feature branch only)
if: github.ref == 'refs/heads/*'
if: contains(github.ref, 'refs/heads/')
uses: actions/upload-artifact@v2
with:
name: binaries
Expand Down

0 comments on commit cac1a8e

Please sign in to comment.