Skip to content

Commit

Permalink
updated file
Browse files Browse the repository at this point in the history
  • Loading branch information
kenriortega committed Jul 6, 2021
1 parent 63f4c7f commit 5a2286a
Showing 1 changed file with 24 additions and 3 deletions.
27 changes: 24 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
# build and publish in parallel: linux/amd64
# build and publish in parallel: linux/amd64,windows/amd64,linux/darwin
goos: [linux,windows,darwin]
goarch: [amd64,arm]
goarch: [amd64]
steps:
- uses: actions/checkout@v2
- name: Run tests
Expand All @@ -25,4 +25,25 @@ jobs:
project_path: "./cmd/"
binary_name: "goproxy"
ldflags: "-s -w"
# extra_files: LICENSE README.md
# extra_files: LICENSE README.md
releases-matrix-arm:
name: Release Go Binary
runs-on: ubuntu-latest
strategy:
matrix:
# build and publish in parallel: linux/arm
goos: [linux]
goarch: [arm]
steps:
- uses: actions/checkout@v2
# - name: Run tests
# run: go test -v -p=1 -timeout=0 ./...
- uses: wangyoucao577/[email protected]
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
goos: ${{ matrix.goos }}
goarch: ${{ matrix.goarch }}
project_path: "./cmd/"
binary_name: "goproxy"
ldflags: "-s -w"
# extra_files: LICENSE README.md

0 comments on commit 5a2286a

Please sign in to comment.