Skip to content

Commit

Permalink
Merge branch 'develop' into main
Browse files Browse the repository at this point in the history
  • Loading branch information
hareku committed Nov 20, 2020
2 parents 836392a + 604df56 commit 3d3f8a7
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,11 +1,15 @@
.PHONY: build merge
.PHONY: build release

build:
go build -o ./fanboxdl.out ./main.go

merge:
TAG =
release:
git checkout develop;
git push origin develop;
git checkout main;
git merge --no-ff --no-edit develop;
git push origin main
git tag ${TAG}
git push origin tag ${TAG}
git checkout develop

0 comments on commit 3d3f8a7

Please sign in to comment.