Skip to content

Commit

Permalink
fix github action syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
chrehall68 committed Nov 11, 2024
1 parent 4cd2df0 commit f2e305a
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/go.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,10 @@ jobs:
go-version: "1.20"

- name: Build
run: GOOS=linux GOARCH=amd64 go build -o linux/vls \
&& GOOS=windows GOARCH=amd64 go build -o windows/vls.exe
&& GOOS=darwin GOARCH=amd64 go build -o macos/vls
run: |
GOOS=linux GOARCH=amd64 go build -o linux/vls
GOOS=windows GOARCH=amd64 go build -o windows/vls.exe
GOOS=darwin GOARCH=amd64 go build -o macos/vls
- name: Upload Linux Artifact
uses: actions/upload-artifact@v3
Expand Down

0 comments on commit f2e305a

Please sign in to comment.