web/.forgejo/workflows/publish.yml
milovann 099d848dbe
Some checks failed
/ test (push) Successful in 6s
/ publish (push) Has been cancelled
workflow
2024-12-04 00:24:14 +01:00

46 lines
1.3 KiB
YAML

on: [push]
jobs:
publish:
runs-on: docker
steps:
- name: Install Pandoc
run: |
apt update
apt install -y pandoc
- name: Install checkout
uses: https://github.com/actions/checkout@v4
with:
fetch-depth: 0 # OR "2" -> To retrieve the preceding commit.
- name: Get changed files
id: changed-files
uses: https://github.com/tj-actions/changed-files@v45
- name: Update website
env:
ALL_CHANGED_FILES: ${{ steps.changed-files.outputs.all_changed_files }}
if: ${{ secrets.WEBTOKEN != '' }}
run: |
echo "Cloning"
echo ${{ secrets.WEBTOKEN }}
git clone https://rvba:${{ secrets.RVBA }}@git.forgeons.org/rvba/web
echo "Cd"
cd web
echo "Config"
git config user.email "ci@git.forgeons.org"
git config user.name "forgeons-web"
cd scripts
ls -al
echo "Pandoc"
./install.sh
echo "Script"
for file in ${ALL_CHANGED_FILES}; do
echo "Script"
./web.sh "$file"
done
cd ..
git add .
if git diff-index --quiet HEAD ; then
echo Nothing changed, not pushing
else
git commit -m 'publish' -a
git push
fi