Skip to content

Commit

Permalink
fix: Remove keybase since moving to github actions (#852)
Browse files Browse the repository at this point in the history
  • Loading branch information
alldoami authored Feb 8, 2022
1 parent 016e02d commit 6e14906
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 39 deletions.
15 changes: 0 additions & 15 deletions .goreleaser.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,18 +33,3 @@ archives:
checksum:
name_template: '{{ .ProjectName }}_{{ .Version }}_SHA256SUMS'
algorithm: sha256

signs:
- artifacts: checksum
cmd: keybase
args:
- pgp
- sign
- "-b"
- "-d"
- "-i"
- "${artifact}"
- "-o"
- "${signature}"
- "-k"
- "{{.Env.KEYBASE_KEY_ID}}"
24 changes: 0 additions & 24 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -46,30 +46,6 @@ lint-missing-acceptance-tests:
done
.PHONY: lint-missing-acceptance-tests

check-release-prereqs:
ifndef KEYBASE_KEY_ID
$(error KEYBASE_KEY_ID is undefined)
endif
.PHONY: check-release-prereqs

release: setup check-release-prereqs ## run a release
./bin/bff bump
git push
goreleaser release --debug --rm-dist
.PHONY: release

release-prerelease: check-release-prereqs build ## release to github as a 'pre-release'
version=`./$(BASE_BINARY_NAME) -version`; \
git tag v"$$version"; \
git push
git push --tags
goreleaser release -f .goreleaser.prerelease.yml --debug --rm-dist
.PHONY: release-prerelease

release-snapshot: ## run a release
goreleaser release --snapshot
.PHONY: release-snapshot

build: ## build the binary
go build ${LDFLAGS} -o $(BASE_BINARY_NAME) .
.PHONY: build
Expand Down

0 comments on commit 6e14906

Please sign in to comment.