Skip to content

Commit f8814b4

Browse files
committed
docker/ci: fix acme restore path
1 parent 5061f0c commit f8814b4

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/docker-ci.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -185,9 +185,9 @@ jobs:
185185
# download from ns.testrun.org
186186
rsync -e "ssh -o StrictHostKeyChecking=accept-new" -avz root@ns.testrun.org:/tmp/${ACME_DIR} acme-restore || true
187187
rsync -avz root@ns.testrun.org:/tmp/${DKIM_DIR} dkimkeys-restore || true
188-
# restore to acme & dkim state
189-
rsync -avz acme-restore/${ACME_DIR}/acme/ root@${HOST}:/var/lib/acme/ || true
190-
rsync -avz dkimkeys-restore/${DKIM_DIR}/dkimkeys/ root@${HOST}:/etc/dkimkeys/ || true
188+
# restore acme & dkim state to VPS
189+
rsync -avz acme-restore/ root@${HOST}:/var/lib/acme/ || true
190+
rsync -avz dkimkeys-restore/ root@${HOST}:/etc/dkimkeys/ || true
191191
# copy acme & dkim state to docker bind mounts
192192
ssh root@${HOST} 'mkdir -p /srv/chatmail/certs /srv/chatmail/dkim && cp -a /var/lib/acme/. /srv/chatmail/certs/ && cp -a /etc/dkimkeys/. /srv/chatmail/dkim/'
193193

0 commit comments

Comments
 (0)