From 37078aab3e3607641c39e943b1b850d9e3ea83dd Mon Sep 17 00:00:00 2001 From: Efertone Date: Wed, 30 Aug 2023 14:22:46 +0200 Subject: [PATCH] it seems ldflags is not a list Signed-off-by: Efertone --- .github/workflows/release.yml | 9 +++------ internal/info/app.go | 2 +- 2 files changed, 4 insertions(+), 7 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index acf4e76..d5932b5 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -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 @@ -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 @@ -42,5 +40,4 @@ jobs: github_token: ${{ secrets.github_token }} goarch: amd64 goos: darwin - ldflags: - - "-s -w" + ldflags: "-s -w" diff --git a/internal/info/app.go b/internal/info/app.go index 51c8bd6..a113061 100644 --- a/internal/info/app.go +++ b/internal/info/app.go @@ -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"