Skip to content

Commit

Permalink
chore: Fix uploading of artifacts
Browse files Browse the repository at this point in the history
  • Loading branch information
slashtechno authored Jun 21, 2024
1 parent dba1e75 commit f486698
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions .github/workflows/go-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,12 +21,11 @@ jobs:
check-latest: true
- name: Build (Not Windows)
if: matrix.os != 'windows-latest'
run: 'go build -v -o cross-blogger__${{ matrix.os }}'
run: 'go build -v -o cross-blogger_${{ matrix.os }}'
- name: Build (Windows)
if: matrix.os == 'windows-latest'
run: 'go build -v -o cross-blogger__${{ matrix.os }}.exe'
run: 'go build -v -o cross-blogger_${{ matrix.os }}.exe'
- uses: actions/upload-artifact@v4
with:
name: binaries
# path: 'cross-blogger__${{ matrix.os }}'
path: 'cross-blogger__*'
name: cross_blogger_${{ matrix.os }}
path: 'cross-blogger_${{ matrix.os }}'

0 comments on commit f486698

Please sign in to comment.