Skip to content

Commit

Permalink
it seems ldflags is not a list
Browse files Browse the repository at this point in the history
Signed-off-by: Efertone <[email protected]>
  • Loading branch information
yitsushi committed Aug 30, 2023
1 parent e33f386 commit 37078aa
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 7 deletions.
9 changes: 3 additions & 6 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,7 @@ jobs:
github_token: ${{ secrets.github_token }}
goarch: amd64
goos: linux
ldflags:
- "-s -w"
ldflags: "-s -w"
windows:
name: Release windows/amd64
runs-on: ubuntu-latest
Expand All @@ -29,8 +28,7 @@ jobs:
github_token: ${{ secrets.github_token }}
goarch: amd64
goos: windows
ldflags:
- "-s -w"
ldflags: "-s -w"
darwin:
name: Release darwin/amd64
runs-on: ubuntu-latest
Expand All @@ -42,5 +40,4 @@ jobs:
github_token: ${{ secrets.github_token }}
goarch: amd64
goos: darwin
ldflags:
- "-s -w"
ldflags: "-s -w"
2 changes: 1 addition & 1 deletion internal/info/app.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@ const AppRepoOwner string = "yitsushi"
const AppName string = "totp-cli"

// AppVersion defined current version of this application.
const AppVersion string = "v1.5.1"
const AppVersion string = "v1.5.3"

0 comments on commit 37078aa

Please sign in to comment.