mirror of
https://github.com/zitadel/zitadel.git
synced 2025-08-11 17:48:07 +00:00
enable login subtree sync
This commit is contained in:
16
Makefile
16
Makefile
@@ -12,6 +12,9 @@ ZITADEL_MASTERKEY ?= MasterkeyNeedsToHave32Characters
|
|||||||
|
|
||||||
export GOCOVERDIR ZITADEL_MASTERKEY
|
export GOCOVERDIR ZITADEL_MASTERKEY
|
||||||
|
|
||||||
|
LOGIN_REMOTE_NAME := login
|
||||||
|
LOGIN_REMOTE_URL := https://github.com/zitadel/typescript.git
|
||||||
|
|
||||||
.PHONY: compile
|
.PHONY: compile
|
||||||
compile: core_build console_build compile_pipeline
|
compile: core_build console_build compile_pipeline
|
||||||
|
|
||||||
@@ -165,3 +168,16 @@ core_lint:
|
|||||||
--config ./.golangci.yaml \
|
--config ./.golangci.yaml \
|
||||||
--out-format=github-actions \
|
--out-format=github-actions \
|
||||||
--concurrency=$$(getconf _NPROCESSORS_ONLN)
|
--concurrency=$$(getconf _NPROCESSORS_ONLN)
|
||||||
|
|
||||||
|
.PHONY: login-pull
|
||||||
|
login-pull: login-ensure-remote
|
||||||
|
git fetch $(LOGIN_REMOTE_NAME)
|
||||||
|
git subtree pull --prefix=login $(LOGIN_REMOTE_NAME) main
|
||||||
|
|
||||||
|
.PHONY: login-push
|
||||||
|
login-push: login-ensure-remote
|
||||||
|
git subtree push --prefix=login $(LOGIN_REMOTE_NAME) main --squash
|
||||||
|
|
||||||
|
login-ensure-remote:
|
||||||
|
@git remote -v | grep $(LOGIN_REMOTE_NAME) || \
|
||||||
|
git remote add $(LOGIN_REMOTE_NAME) $(LOGIN_REMOTE_URL)
|
||||||
|
Reference in New Issue
Block a user