Skip to content

Commit

Permalink
chore: renamed resulting artifacts and action
Browse files Browse the repository at this point in the history
Signed-off-by: Bengt Wegner <Jochen.Wegner@ibm.com>
  • Loading branch information
Petzys committed Sep 19, 2024
1 parent 67b78f7 commit 5f20d36
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/release_binaries.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
name: Build Release Binaries
name: Build Binaries

on:
push:
branches: [ "chore/release_binaries" ]
branches: [ "main" ]

jobs:
build:
Expand Down Expand Up @@ -36,7 +36,7 @@ jobs:
- name: Build binary
run: |
mkdir -p dist
GOOS=${{ matrix.goos }} GOARCH=${{ matrix.goarch }} go build -o dist/app-${{ matrix.goos }}-${{ matrix.goarch }} .
GOOS=${{ matrix.goos }} GOARCH=${{ matrix.goarch }} go build -o dist/${{ github.event.repository.name }}_${{ matrix.goos }}_${{ matrix.goarch }} .
- name: Upload build artifacts
uses: actions/upload-artifact@v3
Expand Down

0 comments on commit 5f20d36

Please sign in to comment.