Publish decompiled output from runner

This commit is contained in:
MrSphay
2026-05-04 12:02:58 +02:00
parent 2f62e113f6
commit 0b99b2130a
2 changed files with 17 additions and 0 deletions

View File

@@ -50,3 +50,19 @@ jobs:
path: |
build/decompiled/**
build/decompiled-file-list.txt
- name: Push decompiled branch
shell: bash
run: |
worktree="$(mktemp -d)"
cp -R build/decompiled/. "${worktree}/"
cp build/decompiled-file-list.txt "${worktree}/decompiled-file-list.txt"
git config user.name "Gitea Runner"
git config user.email "runner@git.wilkensxl.de"
git switch --orphan runner/decompiled-upstream
git rm -rf . || true
cp -R "${worktree}/." .
git add .
git commit -m "Decompile upstream Explosion Overhaul 0.2.3.0"
git push --force origin HEAD:runner/decompiled-upstream