name: Mirror to Codeberg on: push: branches: - main - dev jobs: mirror: runs-on: eulernest steps: - uses: actions/checkout@v4 with: fetch-depth: 0 # vollständige History für mirror-push - name: Push to Codeberg mirror run: | git remote add codeberg https://TMoussa:${{ secrets.CODEBERG_TOKEN }}@codeberg.org/TMoussa/ConformalLabpp.git git push codeberg HEAD:${{ github.ref_name }} --force