Skip to content

Commit

Permalink
asdf
Browse files Browse the repository at this point in the history
  • Loading branch information
phendryx committed Dec 27, 2022
1 parent 71d4cb7 commit f5e0f14
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 20 deletions.
38 changes: 19 additions & 19 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,22 +20,22 @@ jobs:
with:
upload_url: ${{ github.event.release.upload_url }}
asset_path: update-linux-amd64.gz
build-windows:
name: Build Windows Client
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: 1.16
- name: Build
run: make build-windows
- uses: shogo82148/actions-upload-release-asset@v1
with:
upload_url: ${{ github.event.release.upload_url }}
asset_path: update-windows-amd64.exe.gz
- uses: shogo82148/actions-upload-release-asset@v1
with:
upload_url: ${{ github.event.release.upload_url }}
asset_path: albiondata-client-amd64-installer.exe
# build-windows:
# name: Build Windows Client
# runs-on: ubuntu-latest
# steps:
# - uses: actions/checkout@v3
# - name: Set up Go
# uses: actions/setup-go@v3
# with:
# go-version: 1.16
# - name: Build
# run: make build-windows
# - uses: shogo82148/actions-upload-release-asset@v1
# with:
# upload_url: ${{ github.event.release.upload_url }}
# asset_path: update-windows-amd64.exe.gz
# - uses: shogo82148/actions-upload-release-asset@v1
# with:
# upload_url: ${{ github.event.release.upload_url }}
# asset_path: albiondata-client-amd64-installer.exe
2 changes: 1 addition & 1 deletion scripts/build-linux.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

set -eo pipefail

sudo apt-get update && apt-get install -y libpcap-dev
sudo apt-get update && sudo apt-get install -y libpcap-dev

go build -ldflags "-s -w -X main.version=$GITHUB_REF_NAME" albiondata-client.go
ls -la
Expand Down

0 comments on commit f5e0f14

Please sign in to comment.