From ba6d7313773cd394667a8db3e9d3856b1f430e63 Mon Sep 17 00:00:00 2001 From: natxocc Date: Sun, 26 Apr 2026 18:02:28 +0200 Subject: [PATCH] Actualizar .github/workflows/sync-to-github.yml --- .github/workflows/sync-to-github.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/sync-to-github.yml b/.github/workflows/sync-to-github.yml index a636165..36bcebf 100644 --- a/.github/workflows/sync-to-github.yml +++ b/.github/workflows/sync-to-github.yml @@ -9,14 +9,14 @@ jobs: sync: runs-on: ubuntu-latest steps: - # 1️⃣ Clonar origen (Gitea) usando dominio externo + # Clonar origen (Gitea) usando dominio externo - name: Clone source from Gitea run: | git clone https://git.natxocc.com/natxocc/sigpro.git source cd source git checkout main # o la rama que necesites - # 2️⃣ Clonar destino (GitHub) igual que antes + # Clonar destino (GitHub) igual que antes - name: Clone destination (GitHub) run: | git clone https://x-access-token:${{ secrets.GH_TOKEN }}@github.com/natxocc/sigpro.git dest @@ -24,7 +24,7 @@ jobs: git config user.name "Sync Bot" git config user.email "bot@natxocc.com" - # 3️⃣ Copiar archivos seleccionados + # Copiar archivos seleccionados - name: Copy selected files run: | FILES="sigpro.js sigpro.d.ts vite/index.js dist/sigpro.esm.js dist/sigpro.esm.min.js dist/sigpro.js dist/sigpro.min.js" @@ -38,7 +38,7 @@ jobs: fi done - # 4️⃣ Commit y push a GitHub + # Commit y push a GitHub - name: Commit and push run: | cd dest