Skip to content

Commit

Permalink
Fix CD
Browse files Browse the repository at this point in the history
  • Loading branch information
aligator committed Nov 24, 2023
1 parent 52992fc commit e201f62
Showing 1 changed file with 0 additions and 6 deletions.
6 changes: 0 additions & 6 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,32 +27,26 @@ jobs:
- name: Build and pack neargo for Linux
run: |
GOOS=linux GOARCH=amd64 go build .
cp .target/neargo neargo
tar -czf neargo-linux-amd64.tar.gz neargo
- name: Build and pack neargo for Linux ARMv7
run: |
GOOS=linux GOARCH=arm GOARM=7 go build .
cp .target/neargo neargo
tar -czf neargo-linux-armv7.tar.gz neargo
- name: Build and pack neargo for Linux ARM64
run: |
GOOS=linux GOARCH=arm64 go build .
cp .target/neargo neargo
tar -czf neargo-linux-arm64.tar.gz neargo
- name: Build and pack neargo for macOS
run: |
GOOS=darwin GOARCH=amd64 go build .
cp .target/neargo neargo
tar -czf neargo-macos-amd64.tar.gz neargo
- name: Build and pack neargo for macOS ARM64 (M1)
run: |
GOOS=darwin GOARCH=arm64 go build .
cp .target/neargo neargo
tar -czf neargo-macos-arm64.tar.gz neargo
- name: Build and pack neargo for Windows
run: |
GOOS=windows GOARCH=amd64 go build .
cp .target/neargo.exe neargo.exe
zip neargo-windows-amd64.zip neargo.exe
- name: Get the version
Expand Down

0 comments on commit e201f62

Please sign in to comment.