chore: remove redundant deploy rule
continuous-integration/drone/push Build is passing
Details
continuous-integration/drone/push Build is passing
Details
This commit is contained in:
parent
49333b641e
commit
26525fcc43
12
makefile
12
makefile
|
@ -1,9 +1,3 @@
|
|||
SITE_NAME = ktyl.dev
|
||||
# configured in ~/.ssh/config
|
||||
HOST = pluto
|
||||
# a script on the remote server to move it on arrival
|
||||
REMOTE_SCRIPT = ./deploy-$(SITE_NAME)
|
||||
|
||||
SRC_DIR = src
|
||||
IMG_DIR = img
|
||||
OUT_DIR = site
|
||||
|
@ -38,12 +32,6 @@ html: $(HTML_TARGETS) $(CSS_TARGETS) | $(OUT_DIR)
|
|||
cp $(IMG_DIR)/*.png $(OUT_DIR)/
|
||||
cp $(IMG_DIR)/*.jpg $(OUT_DIR)/
|
||||
|
||||
deploy:
|
||||
cp -r $(OUT_DIR) $(SITE_NAME)
|
||||
rsync -rP $(SITE_NAME) $(HOST):~
|
||||
rm -r $(SITE_NAME)
|
||||
ssh $(HOST) "sudo $(REMOTE_SCRIPT)"
|
||||
|
||||
$(OUT_DIR)/%.html: $(ROOT_DIR)/%.html $(HTML_INCLUDES) $(BLOG_INDEX) | $(OUT_DIR)
|
||||
python ppp.py $< $(HTML_INCLUDES) $(BLOG_INDEX) > $@
|
||||
|
||||
|
|
Loading…
Reference in New Issue