aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorEgor Tensin <Egor.Tensin@gmail.com>2022-09-07 16:24:20 +0200
committerEgor Tensin <Egor.Tensin@gmail.com>2022-09-07 16:24:20 +0200
commit7465cf9ee655030fc646f6b307e7f336c81787de (patch)
tree336bd4a86413f7461606bd123d8f017ab46d16a3
parentREADME: update (diff)
downloadsorting-algorithms-7465cf9ee655030fc646f6b307e7f336c81787de.tar.gz
sorting-algorithms-7465cf9ee655030fc646f6b307e7f336c81787de.zip
workflows: set remote port
-rw-r--r--.github/workflows/jekyll.yml1
-rw-r--r--Makefile4
2 files changed, 4 insertions, 1 deletions
diff --git a/.github/workflows/jekyll.yml b/.github/workflows/jekyll.yml
index f74a22b..052dd7e 100644
--- a/.github/workflows/jekyll.yml
+++ b/.github/workflows/jekyll.yml
@@ -35,4 +35,5 @@ jobs:
env:
REMOTE_USER: '${{ secrets.REMOTE_USER }}'
REMOTE_HOST: '${{ secrets.REMOTE_HOST }}'
+ REMOTE_PORT: '${{ secrets.REMOTE_PORT }}'
REMOTE_DIR: '${{ secrets.REMOTE_DIR }}'
diff --git a/Makefile b/Makefile
index 2fb0aea..f460632 100644
--- a/Makefile
+++ b/Makefile
@@ -53,12 +53,14 @@ view:
REMOTE_USER ?= who
REMOTE_HOST ?= where
+REMOTE_PORT ?= 22
REMOTE_DIR ?= /path/to/dir
$(eval $(call noexpand,REMOTE_USER))
$(eval $(call noexpand,REMOTE_HOST))
+$(eval $(call noexpand,REMOTE_PORT))
$(eval $(call noexpand,REMOTE_DIR))
.PHONY: deploy
deploy:
- rsync -avh -e 'ssh -o StrictHostKeyChecking=no' _site/ '$(call escape,$(REMOTE_USER)@$(REMOTE_HOST):$(REMOTE_DIR)/)' --delete
+ rsync -avh -e 'ssh -p $(call escape,$(REMOTE_PORT)) -o StrictHostKeyChecking=no' _site/ '$(call escape,$(REMOTE_USER)@$(REMOTE_HOST):$(REMOTE_DIR)/)' --delete