1
0
mirror of https://github.com/msberends/AMR.git synced 2025-07-21 22:13:17 +02:00

(v2.1.1.9211) fix python wrapper

This commit is contained in:
2025-03-16 13:11:26 +01:00
parent ceb3e6675d
commit 98bc83da73
5 changed files with 23 additions and 24 deletions

View File

@ -76,24 +76,18 @@ jobs:
- name: Git push to python-wrapper branch
run: |
git config user.name "GitHub Actions"
git config user.email "<>"
# Create and switch to python-wrapper branch (orphan if it doesn't exist)
git fetch origin python-wrapper || true
git checkout python-wrapper || git checkout --orphan python-wrapper
# Delete all existing files from the working tree (safely)
git rm -rf . || true
mv .git PythonPackage/AMR/
ls -lh PythonPackage/AMR/
find . -mindepth 1 ! -name 'PythonPackage' -exec rm -rf {} +
find . -mindepth 1 ! -path './PythonPackage*' -exec rm -rf {} +
mv PythonPackage/AMR/* .
rm -rf PythonPackage
ls -lh
# Commit and push if changes exist
git init
git remote add origin https://github.com/msberends/AMR
git checkout --orphan python-wrapper
git config user.name "github-actions[bot]"
git config user.email "github-actions[bot]@users.noreply.github.com"
git rm -rf . || true
git add .
git commit -m "Python wrapper update" || echo "No changes to commit"
git commit -m "Python wrapper update"
git push origin python-wrapper --force