This commit is contained in:
milovann 2024-12-03 18:49:19 +01:00
parent 084743df2c
commit 40aa60fbf3

View file

@ -1,7 +1,7 @@
on: [push]
jobs:
automate-ifc:
runs-on: self-hosted
publish:
runs-on: docker
steps:
- name: Install checkout
uses: https://github.com/actions/checkout@v4
@ -10,16 +10,23 @@ jobs:
- name: Get changed files
id: changed-files
uses: https://github.com/tj-actions/changed-files@v42
- name: Do computations
- name: Update website
env:
ALL_CHANGED_FILES: ${{ steps.changed-files.outputs.all_changed_files }}
run: |
if [[ ! -d web ]]
then
git clone https://git.forgeons.org/rvba/web
fi
cd web && git pull
if: ${{ secrets.WEB != '' }}
run: |
git clone --recursive https://rvba:${{ secrets.WEB }}@git.forgeons.org/rvba/web
cd web
git config user.email "ci@git.forgeons.org" ; git config user.name "forgeons-web"
cd scripts
for file in ${ALL_CHANGED_FILES}; do
./web.sh "$file"
cd ..
git add .
if git diff-index --quiet HEAD ; then
echo Nothing changed, not pushing
else
git commit -m 'publish' -a
git push
fi