remove release action & add rsync action
Some checks failed
mkdocs build / build (push) Failing after 3s

This commit is contained in:
2024-08-29 16:56:43 +02:00
parent 712ad5ac83
commit 8d7a64cc9a
7 changed files with 26 additions and 7 deletions

10
.actions/rsync/Dockerfile Normal file
View File

@ -0,0 +1,10 @@
FROM debian:stable-slim
RUN apt update
RUN apt install -y rsync
COPY entrypoint.sh /entrypoint.sh
RUN chmod +x /entrypoint.sh
ENTRYPOINT ["/entrypoint.sh"]