Skip to content

Commit

Permalink
ci: 🔧 update makefile
Browse files Browse the repository at this point in the history
  • Loading branch information
JamesChung committed Apr 16, 2023
1 parent 81ea73e commit 50675a5
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ release:
goreleaser release --clean

.PHONY: tag
tag:
tag: update docs
git tag -a v0.0.0-beta.$$(date +"%Y%m%d") -m v0.0.0-beta.$$(date +"%Y%m%d")

.PHONY: local
Expand All @@ -25,3 +25,11 @@ docs:
@git restore --staged .
@git add ./docs
@git commit -m "docs: :memo: update documentation"

.PHONY: update
update:
go get -u
go mod tidy
@git restore --staged .
@git add go.mod go.sum
@git commit -m "chore: :arrow_up: upgrade dependencies"

0 comments on commit 50675a5

Please # to comment.