fix: new workflow

This commit is contained in:
2025-10-10 13:12:57 +02:00
parent 1da7a7a76e
commit 8a9af72795
2 changed files with 6 additions and 2 deletions

View File

@@ -22,4 +22,4 @@ jobs:
- uses: actions/checkout@v4
- name: Sync Respository
run: |
${{ github.workspace }}/.init/bin/mirror_project.sh $SYNC_TARGET '${{ github.event.head_commit.message }}'
${{ github.workspace }}/.init/bin/mirror_project.sh $SYNC_TARGET '${{ github.event.head_commit.message }}' ${{ runner.temp }}/kompose

View File

@@ -1,7 +1,11 @@
#!/bin/bash
TMP_PROJECT=/tmp/project
TMP_PROJECT="$3"
git config --global user.email "valknar@pivoine.art"
git config --global user.name "Sebastian Krüger"
mkdir
git clone "$1" "$TMP_PROJECT"
cp -rf ./* "$TMP_PROJECT"
cd "$TMP_PROJECT"