Update .github/workflows/fetch-upstream-mods.yml
This commit is contained in:
26
.github/workflows/fetch-upstream-mods.yml
vendored
26
.github/workflows/fetch-upstream-mods.yml
vendored
@@ -33,18 +33,34 @@ jobs:
|
|||||||
done
|
done
|
||||||
|
|
||||||
- name: Commit and push
|
- name: Commit and push
|
||||||
|
env:
|
||||||
|
GITEA_TOKEN: ${{ secrets.GT_TOKEN }}
|
||||||
run: |
|
run: |
|
||||||
cd repo
|
cd repo
|
||||||
|
|
||||||
git config user.name 'jim[bot]'
|
git config user.name 'jim[bot]'
|
||||||
git config user.email 'jim[bot]@users.noreply.github.com'
|
git config user.email 'jim[bot]@users.noreply.github.com'
|
||||||
git config lfs.locksverify false
|
|
||||||
|
|
||||||
git remote set-url origin \
|
# Provide HTTP Basic auth to libcurl (works for git + git-lfs), token as PASSWORD
|
||||||
http://${GITEA_TOKEN}@smallgit.dasguney.com:3000/skyline/balatro-mod-index.git
|
cat > ~/.netrc <<EOF
|
||||||
|
machine smallgit.dasguney.com
|
||||||
|
login skyline
|
||||||
|
password ${GITEA_TOKEN}
|
||||||
|
EOF
|
||||||
|
chmod 600 ~/.netrc
|
||||||
|
|
||||||
|
# Use direct Gitea HTTP endpoint (no nginx)
|
||||||
|
git remote set-url origin http://smallgit.dasguney.com:3000/skyline/balatro-mod-index.git
|
||||||
|
|
||||||
|
# Force git-lfs to use the same endpoint (otherwise it keeps using https://smallgit...)
|
||||||
|
git config lfs.url "http://smallgit.dasguney.com:3000/skyline/balatro-mod-index.git/info/lfs"
|
||||||
|
git config lfs."http://smallgit.dasguney.com:3000/skyline/balatro-mod-index.git/info/lfs".locksverify false
|
||||||
|
|
||||||
|
# If LFS hooks exist, make sure they're installed consistently
|
||||||
|
git lfs install --local || true
|
||||||
|
|
||||||
git add mods
|
git add mods
|
||||||
if git commit -m "fetch upstream mod changes ($(date --utc +%Y%m%d_%H%M%SZ))"; then
|
if git commit -m "fetch upstream mod changes ($(date --utc +%Y%m%d_%H%M%SZ))"; then
|
||||||
git push origin main
|
git push origin main
|
||||||
fi
|
fi
|
||||||
env:
|
|
||||||
GITEA_TOKEN: ${{ secrets.GT_TOKEN }}
|
|
||||||
|
|||||||
Reference in New Issue
Block a user