diff options
author | Franck Cuny <franck@fcuny.net> | 2022-03-28 19:50:38 -0700 |
---|---|---|
committer | Franck Cuny <franck@fcuny.net> | 2022-03-28 19:50:38 -0700 |
commit | 5483be5a93faac53c2319696e1d024fd049b8a09 (patch) | |
tree | e1ad0e84de062d9cebc2ffd43127dd11b553ffb4 /users/fcuny/notes/Makefile | |
parent | note: update list of chipset for alder lake (diff) | |
download | world-5483be5a93faac53c2319696e1d024fd049b8a09.tar.gz |
convert blog to notes
Separating the two sites so I can customize them differently.
Diffstat (limited to '')
-rw-r--r-- | users/fcuny/notes/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/users/fcuny/notes/Makefile b/users/fcuny/notes/Makefile index 5414dde..4644ac3 100644 --- a/users/fcuny/notes/Makefile +++ b/users/fcuny/notes/Makefile @@ -1,6 +1,6 @@ DOCKER := DOCKER_BUILDKIT=1 docker DOCKER_BUILD_ARGS := -DOCKER_IMAGE := fcuny/fcuny.net +DOCKER_IMAGE := fcuny/notes.fcuny.net DOCKER_IMAGE_REF := $(shell git rev-parse HEAD) DOCKERFILE := Dockerfile PROJECT_DIR := $(realpath $(CURDIR)) @@ -18,7 +18,7 @@ worktree-clean: deploy: worktree-clean docker-build @echo "Deploying to fly ..." flyctl deploy - @git tag -a --message $$(flyctl info -j |jq -r '.App | "fcuny.net/v\(.Version)"') $$(flyctl info -j |jq -r '.App | "fcuny.net/v\(.Version)"') + @git tag -a --message $$(flyctl info -j |jq -r '.App | "notes.fcuny.net/v\(.Version)"') $$(flyctl info -j |jq -r '.App | "notes.fcuny.net/v\(.Version)"') @git push origin --all @git push origin --tags |