Skip to content

Commit

Permalink
build: fix output binary name
Browse files Browse the repository at this point in the history
The current name can be confused with project-stacker/stacker-bom
project.

Signed-off-by: Ramkumar Chinchani <rchincha@cisco.com>
  • Loading branch information
rchincha committed May 23, 2024
1 parent c4b48a4 commit d7bbbf0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ jobs:
uses: svenstaro/upload-release-action@v2
with:
repo_token: ${{ secrets.GITHUB_TOKEN }}
file: bin/stacker-bom-*
file: bin/bom-*
tag: ${{ github.ref }}
overwrite: true
file_glob: true
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ OS ?= linux
ARCH ?= amd64

BINDIR := bin
BINARY := stacker-bom-${OS}-${ARCH}
BINARY := bom-${OS}-${ARCH}

.PHONY: binary
binary:
Expand Down

0 comments on commit d7bbbf0

Please sign in to comment.