Skip to content

ci: agregando yml para reflejar actualizaciones en gitlab #1

ci: agregando yml para reflejar actualizaciones en gitlab

ci: agregando yml para reflejar actualizaciones en gitlab #1

Workflow file for this run

name: Espejo hacia GitLab
on:
push:
branches: ['**']
tags: ['**']
jobs:
mirror:
runs-on: ubuntu-latest
steps:
- name: Checkout completo
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Push espejo hacia GitLab
run: |
git remote add gitlab https://pradelpaw:${{ secrets.GITLAB_TOKEN }}@gitlab.com/sisdai-org/sisdai-mapas.git
git push gitlab --all --force
git push gitlab --tags --force