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

This commit is contained in:
Ludovic Cartier 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"]

View File

@ -0,0 +1,3 @@
name: 'rsync wiki files'
description: 'custom gitea action for rsync wiki files'
author: 'ludal'

View File

@ -0,0 +1,3 @@
#!/bin/sh
/usr/bin/rsync -avz --delete /workspace/ludal/wiki/_site/ rsync://192.168.1.9/wiki/

View File

@ -12,12 +12,15 @@ jobs:
- name: Checkout
uses: actions/checkout@v4
- name: Mkdocs build
uses: ./mkdocs-build-action/ # Uses an action in this directory
- name: Create release
uses: akkuman/gitea-release-action@v1
with:
files: |-
_site/**
token: "${{ secrets.RELEASE_TOKEN }}"
uses: ./.actions/mkdocs-build/ # Uses an action in this directory
- name: rsync files
uses: ./.actions/rsync/
# # working, but i don't need this
# - name: Create release
# uses: akkuman/gitea-release-action@v1
# with:
# files: |-
# _site/**
# token: "${{ secrets.RELEASE_TOKEN }}"