33 lines
913 B
YAML
33 lines
913 B
YAML
name: sync-to-gitea
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- high-performance
|
|
|
|
jobs:
|
|
sync:
|
|
runs-on: ubuntu-latest
|
|
permissions:
|
|
contents: write
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v4
|
|
with:
|
|
fetch-depth: 0
|
|
|
|
- name: Push to Gitea high-performance
|
|
env:
|
|
GITEA_USERNAME: Admin
|
|
GITEA_TOKEN: ${{ secrets.GITEA_SECRET }}
|
|
run: |
|
|
set -euo pipefail
|
|
echo "Syncing ${{ github.event.repository.name }}:high-performance → Gitea high-performance"
|
|
echo "Commit: $(git rev-parse HEAD)"
|
|
|
|
git remote add gitea "https://${GITEA_USERNAME}:${GITEA_TOKEN}@ci.nxtgauge.com/Admin/${{ github.event.repository.name }}.git"
|
|
|
|
git fetch gitea high-performance || true
|
|
git push gitea HEAD:high-performance --force-with-lease=refs/heads/high-performance
|
|
|
|
echo "Sync complete!"
|