From af23026946d61662f5e6d4713f83b654dccbcc74 Mon Sep 17 00:00:00 2001 From: Eriks Zelenka Date: Mon, 14 Feb 2022 08:32:46 +0000 Subject: [PATCH] test: fixing pipeline --- .github/workflows/go.yaml | 4 +++- Makefile | 6 ------ 2 files changed, 3 insertions(+), 7 deletions(-) diff --git a/.github/workflows/go.yaml b/.github/workflows/go.yaml index 59dba79..9081f35 100644 --- a/.github/workflows/go.yaml +++ b/.github/workflows/go.yaml @@ -73,7 +73,9 @@ jobs: - name: Release shell: bash run: | - make release + git tag "$(svu next)" + git push --tags + goreleaser release --rm-dist env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} HOMEBREW_TAP_GITHUB_TOKEN: ${{ secrets.HOMEBREW_TAP_GITHUB_TOKEN }} diff --git a/Makefile b/Makefile index 8f73c9e..a88a392 100644 --- a/Makefile +++ b/Makefile @@ -63,9 +63,3 @@ clean: ## Removes build artifacts from source code update-here: ## Helper target to start editing all occurances with UPDATE_HERE. @echo "Update following files for release:" @grep --color -nHR UPDATE_HERE . - -.PHONY: release -release: ## Release application - git tag "$(svu next)" - git push --tags - $(GOR) release --rm-dist