1
0
Files
balatro-mod-index/.github/workflows/fetch-upstream-mods.yml
Ö. Efe D. a7d8a0ba0b
Some checks failed
fetch upstream mod changes / replace-mods (push) Failing after 18s
remove temp upstream first when cloning
2025-12-24 03:08:23 +01:00

45 lines
1.1 KiB
YAML

name: fetch upstream mod changes
on:
schedule:
- cron: '13,43 * * * *'
workflow_dispatch:
jobs:
replace-mods:
runs-on: ubuntu-latest
steps:
- name: Checkout current Gitea repo
uses: actions/checkout@v4
with:
lfs: true
- name: Clone upstream GitHub repo
run: |
rm -rf /tmp/upstream
git clone https://github.com/skyline69/balatro-mod-index.git /tmp/upstream
- name: Replace mods directory
run: |
rm -rf mods
cp -a /tmp/upstream/mods ./mods
- name: Append last-updated timestamp
run: |
TIME_NOW=$(date +"%s")
git diff -z --name-only | grep -z meta.json | while IFS='' read -r -d '' file; do
jq --indent 2 '."last-updated" |= (. // '"$TIME_NOW"')' "$file" | sponge "$file"
done
- name: Commit and push
run: |
git config user.name "gitea-bot"
git config user.email "bot@smallgit.dasguney.com"
git add mods
if git commit -m "fetch upstream mod changes ($(date --utc +%Y%m%d_%H%M%SZ))"; then
git push
fi