Compare commits

...

2 commits

Author SHA1 Message Date
e965e4314c Update actions/upload-artifact action to v7
Some checks failed
/ build (pull_request) Failing after 27s
/ Ansible Lint (push) Failing after 2m41s
/ Ansible Lint (pull_request) Failing after 2m29s
2026-06-30 19:16:04 +00:00
cf98c9df30
configure dooris to write ssh public keys into file
Some checks failed
/ build (push) Successful in 25s
/ Ansible Lint (push) Failing after 2m37s
2026-06-30 21:14:32 +02:00
2 changed files with 4 additions and 1 deletions

View file

@ -67,7 +67,7 @@ jobs:
run: | run: |
rsync -v -r --delete -e "ssh -i deploykey.priv -o 'UserKnownHostsFile ./known_hosts'" site/ infra-docs-deploy@public-web-static.hosts.hamburg.ccc.de:/var/www/infra-docs.hamburg.ccc.de/ rsync -v -r --delete -e "ssh -i deploykey.priv -o 'UserKnownHostsFile ./known_hosts'" site/ infra-docs-deploy@public-web-static.hosts.hamburg.ccc.de:/var/www/infra-docs.hamburg.ccc.de/
- uses: actions/upload-artifact@v3 - uses: actions/upload-artifact@v7
if: github.event_name == 'pull_request' if: github.event_name == 'pull_request'
with: with:
name: docs-build name: docs-build

View file

@ -10,5 +10,8 @@ services:
DOORIS_BASE_URL: https://dooris.ccchh.net DOORIS_BASE_URL: https://dooris.ccchh.net
DOORIS_CCUJACK_USER: "dooris" DOORIS_CCUJACK_USER: "dooris"
DOORIS_CCUJACK_PASSWORD: "{{ secret__dooris_ccujack_password }}" DOORIS_CCUJACK_PASSWORD: "{{ secret__dooris_ccujack_password }}"
DOORIS_AUTHORIZED_KEYS_FILE: "/srv/state/dooris_authorized_keys"
network_mode: host network_mode: host
restart: unless-stopped restart: unless-stopped
volumes:
- "./state:/srv/state/:rw"