Skip to content

Commit 3615f41

Browse files
committed
chore: fix release action
1 parent 579d151 commit 3615f41

File tree

1 file changed

+7
-6
lines changed

1 file changed

+7
-6
lines changed

.github/workflows/release.yaml

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,16 +4,17 @@ on:
44

55
jobs:
66
releases-matrix:
7-
name: Release Go Binary
7+
name: Release Authorizer Binary
88
runs-on: ubuntu-latest
99
strategy:
1010
matrix:
1111
# build and publish in parallel: linux/386, linux/amd64, windows/386, windows/amd64, darwin/amd64
1212
goos: [linux, windows, darwin]
13-
goarch: ['386', amd64]
14-
exclude:
15-
- goarch: '386'
16-
goos: darwin
13+
goarch: amd64
14+
# goarch: ['386', amd64]
15+
# exclude:
16+
# - goarch: '386'
17+
# goos: darwin
1718
steps:
1819
- uses: actions/checkout@v2
1920
- uses: wangyoucao577/[email protected]
@@ -22,4 +23,4 @@ jobs:
2223
goos: ${{ matrix.goos }}
2324
goarch: ${{ matrix.goarch }}
2425
build_command: make clean && make
25-
extra_files: .env.sample app build
26+
extra_files: .env.sample app build

0 commit comments

Comments
 (0)