Publish private test jar branch
All checks were successful
Build / build (push) Successful in 8m49s

This commit is contained in:
MrSphay
2026-05-07 01:28:59 +02:00
parent 41c7f8e77c
commit d75f342b4f

View File

@@ -29,3 +29,19 @@ jobs:
name: explosionoverhaul-neoforge-build name: explosionoverhaul-neoforge-build
path: | path: |
build/libs/** build/libs/**
- name: Publish private test jar branch
if: success()
run: |
set -euo pipefail
mkdir -p /tmp/explosionoverhaul-test-jar
cp build/libs/*.jar /tmp/explosionoverhaul-test-jar/
git config user.name "gitea-actions"
git config user.email "actions@git.wilkensxl.de"
git checkout --orphan test-jar
git rm -rf .
mkdir -p jars
cp /tmp/explosionoverhaul-test-jar/*.jar jars/
git add jars
git commit -m "Update private test jar [skip ci]"
git push --force origin HEAD:test-jar