File tree Expand file tree Collapse file tree 4 files changed +6
-5
lines changed Expand file tree Collapse file tree 4 files changed +6
-5
lines changed Original file line number Diff line number Diff line change @@ -434,7 +434,7 @@ severity:
434
434
# selected out format.
435
435
# - Code climate: https://docs.codeclimate.com/docs/issues#issue-severity
436
436
# - Checkstyle: https://checkstyle.sourceforge.io/property_types.html#severity
437
- # - Github : https://help.github.com/en/actions/reference/workflow-commands-for-github-actions#setting-an-error-message
437
+ # - GitHub : https://help.github.com/en/actions/reference/workflow-commands-for-github-actions#setting-an-error-message
438
438
default-severity : error
439
439
440
440
# The default value is false.
Original file line number Diff line number Diff line change 29
29
skip : true
30
30
31
31
# ---------------------------
32
- # Github Release
32
+ # GitHub Release
33
33
# ---------------------------
34
34
release :
35
35
prerelease : true
Original file line number Diff line number Diff line change @@ -45,7 +45,7 @@ install-releaser: ## Install the GoReleaser application
45
45
@echo " installing GoReleaser..."
46
46
@curl -sfL https://install.goreleaser.com/github.com/goreleaser/goreleaser.sh | sh
47
47
48
- release :: # # Full production release (creates release in Github )
48
+ release :: # # Full production release (creates release in GitHub )
49
49
@echo " releasing..."
50
50
@test $(github_token )
51
51
@export GITHUB_TOKEN=$(github_token ) && goreleaser --rm-dist
Original file line number Diff line number Diff line change @@ -14,15 +14,16 @@ ifeq ($(REPO_OWNER),)
14
14
REPO_OWNER="bitcoinschema"
15
15
endif
16
16
17
- .PHONY : clean
18
-
17
+ .PHONY : all
19
18
all : # # Runs multiple commands
20
19
@$(MAKE ) test
21
20
21
+ .PHONY : clean
22
22
clean : # # Remove previous builds and any test cache data
23
23
@go clean -cache -testcache -i -r
24
24
@test $(DISTRIBUTIONS_DIR )
25
25
@if [ -d $( DISTRIBUTIONS_DIR) ]; then rm -r $(DISTRIBUTIONS_DIR ) ; fi
26
26
27
+ .PHONY : release
27
28
release :: # # Runs common.release then runs godocs
28
29
@$(MAKE ) godocs
You can’t perform that action at this time.
0 commit comments