Skip to content

Commit

Permalink
Try github release
Browse files Browse the repository at this point in the history
  • Loading branch information
rpanchyk committed Apr 18, 2024
1 parent 4a9d9de commit 86f57a3
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,16 @@ jobs:
matrix:
include:
- os: ubuntu-latest
artifact_name: ${{ github.event.repository.name }}
osname: linux
# artifact_name: ${{ github.event.repository.name }}
asset_name: ${{ github.event.repository.name }}-linux-amd64.zip
- os: windows-latest
artifact_name: ${{ github.event.repository.name }}.exe
osname: windows
# artifact_name: ${{ github.event.repository.name }}.exe
asset_name: ${{ github.event.repository.name }}-windows-amd64.zip
- os: macos-latest
artifact_name: ${{ github.event.repository.name }}
osname: macosx
# artifact_name: ${{ github.event.repository.name }}
asset_name: ${{ github.event.repository.name }}-macos-arm64.zip
runs-on: ${{ matrix.os }}
# runs-on: ubuntu-latest
Expand All @@ -47,7 +50,7 @@ jobs:
run: go test -v ./...

- name: Create binaries
run: make build
run: make build-${{ matrix.osname }}

# - name: Create binaries
# if: startsWith(github.ref, 'refs/tags/')
Expand Down

0 comments on commit 86f57a3

Please sign in to comment.