Skip to content

Commit

Permalink
WIP
Browse files Browse the repository at this point in the history
  • Loading branch information
Lucas Maurice committed Oct 5, 2023
1 parent a6cee62 commit 7193980
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/go.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,10 +31,10 @@ jobs:
- name: Build for ${{ matrix.GOOS }}-${{ matrix.GOARCH }}
run: |
GOOS=${{ matrix.GOOS }} GOARCH=${{ matrix.GOARCH }} go build -C ./src -o $GITHUB_WORKSPACE/bin/$(basename $GITHUB_REPOSITORY)
GOOS=${{ matrix.GOOS }} GOARCH=${{ matrix.GOARCH }} go build -C ./src -o ./bin/$(basename $GITHUB_REPOSITORY)
- name: Upload artifact
- name: Upload artifact
uses: actions/upload-artifact@v3
with:
name: ${{ matrix.GOOS }}-${{ matrix.GOARCH }}
path: $GITHUB_WORKSPACE/bin/$(basename $GITHUB_REPOSITORY)
name: ${{ basename $GITHUB_REPOSITORY }}-${{ matrix.GOOS }}-${{ matrix.GOARCH }}
path: ./bin/$(basename $GITHUB_REPOSITORY)

0 comments on commit 7193980

Please sign in to comment.