Skip to content

Commit

Permalink
CI: ignore if folders are missing
Browse files Browse the repository at this point in the history
  • Loading branch information
missytake committed Jul 23, 2024
1 parent fda79b0 commit a7254f1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/test-and-deploy-ipv4only.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,8 @@ jobs:
rsync -avz root@staging-ipv4.testrun.org:/var/lib/acme . || true
rsync -avz root@staging-ipv4.testrun.org:/etc/dkimkeys . || true
# store previous acme & dkim state on ns.testrun.org, if it contains useful certs
mv dkimkeys dkimkeys-ipv4
mv acme acme-ipv4
mv dkimkeys dkimkeys-ipv4 || true
mv acme acme-ipv4 || true
if [ -f dkimkeys-ipv4/opendkim.private ]; then rsync -avz -e "ssh -o StrictHostKeyChecking=accept-new" dkimkeys-ipv4 root@ns.testrun.org:/tmp/ || true; fi
if [ "$(ls -A acme-ipv4/certs)" ]; then rsync -avz -e "ssh -o StrictHostKeyChecking=accept-new" acme-ipv4 root@ns.testrun.org:/tmp/ || true; fi
# make sure CAA record isn't set
Expand Down

0 comments on commit a7254f1

Please sign in to comment.