Skip to content

Commit

Permalink
fix artifact name
Browse files Browse the repository at this point in the history
  • Loading branch information
lmbzib0 committed Feb 15, 2024
1 parent 78f0492 commit a477f4c
Showing 1 changed file with 3 additions and 5 deletions.
8 changes: 3 additions & 5 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -120,10 +120,8 @@ jobs:
path: "C:/msys64/usr/bin"
GOARCH: amd64
env:
MSYSTEM: ${{ matrix.mingw }}
CHERE_INVOKING: 1
GOARCH: ${{ matrix.GOARCH }}
CGO_ENABLED: 1
GOARCH: ${{ matrix.GOARCH }}
name: MSYS2 ${{ matrix.mingw }}
steps:
- uses: actions/checkout@v4
Expand All @@ -142,10 +140,10 @@ jobs:
- shell: powershell
run: |
go get github.com/antlr4-go/antlr/v4
$env:PATH="${{ matrix.path }};$env:PATH" ;go build --buildmode=c-shared -o a2l_grpc_$(go env GOOS)_$(go env GOARCH).dll ./cmd/a2l/a2l.go
$env:PATH="${{ matrix.path }};$env:PATH" ;go build --buildmode=c-shared -o a2l_grpc_$(go env GOOS)_${{ matrix.GOARCH }}.dll ./cmd/a2l/a2l.go
- uses: actions/upload-artifact@v4
with:
name: windows
name: windows_${{ matrix.GOARCH }}
path: |
*.dll
*.h
Expand Down

0 comments on commit a477f4c

Please sign in to comment.