mirror of
https://github.com/mentos1386/zdravko.git
synced 2024-11-25 00:58:07 +00:00
ci(deploy): work without having key files
This commit is contained in:
parent
1221f524d5
commit
08e19be859
1 changed files with 2 additions and 2 deletions
4
justfile
4
justfile
|
@ -4,8 +4,8 @@ set shell := ["devbox", "run"]
|
|||
set dotenv-load
|
||||
|
||||
# Load public and private keys
|
||||
export JWT_PRIVATE_KEY := `cat jwt.private.pem`
|
||||
export JWT_PUBLIC_KEY := `cat jwt.public.pem`
|
||||
export JWT_PRIVATE_KEY := `cat jwt.private.pem || echo ""`
|
||||
export JWT_PUBLIC_KEY := `cat jwt.public.pem || echo ""`
|
||||
|
||||
GIT_SHA := `git rev-parse --short HEAD`
|
||||
DOCKER_IMAGE := "ghcr.io/mentos1386/zdravko:sha-"+GIT_SHA
|
||||
|
|
Loading…
Reference in a new issue