From 46f5ba559159883c4eb69b0f7306307031c00a17 Mon Sep 17 00:00:00 2001 From: Nico Duldhardt Date: Tue, 16 Jan 2024 08:34:47 +0100 Subject: [PATCH] update release yaml for new folder structure --- .github/workflows/release.yml | 2 +- Taskfile.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 71e09c8..f02a86f 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -25,7 +25,7 @@ jobs: - name: Build binary run: | BINARY_NAME="gptprep-${{ matrix.goos }}-${{ matrix.goarch }}" - env GOOS=${{ matrix.goos }} GOARCH=${{ matrix.goarch }} go build -ldflags="-s -w" -o "${BINARY_NAME}" + env GOOS=${{ matrix.goos }} GOARCH=${{ matrix.goarch }} go build -ldflags="-s -w" -o "${BINARY_NAME}" ./cmd - name: Archive binary uses: actions/upload-artifact@v3 diff --git a/Taskfile.yaml b/Taskfile.yaml index a491024..204f0dd 100644 --- a/Taskfile.yaml +++ b/Taskfile.yaml @@ -14,5 +14,5 @@ tasks: release: desc: Tag the new version and push it to GitHub cmds: - - git tag -a "{{.VERSION}}" -m "Release VERSION {{.VERSION}} of {{.APP_NAME}}" + - git tag -a "{{.VERSION}}" -m "Release version {{.VERSION}} of {{.APP_NAME}}" - git push origin "{{.VERSION}}"