Skip to content

Commit 4efa1dc

Browse files
Se agrega archivo yml para replicar cambios en gitlab
1 parent cc60a81 commit 4efa1dc

1 file changed

Lines changed: 21 additions & 0 deletions

File tree

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
name: Espejo hacia GitLab
2+
3+
on:
4+
push:
5+
branches: ['**']
6+
tags: ['**']
7+
8+
jobs:
9+
mirror:
10+
runs-on: ubuntu-latest
11+
steps:
12+
- name: Checkout completo
13+
uses: actions/checkout@v4
14+
with:
15+
fetch-depth: 0
16+
17+
- name: Push espejo hacia GitLab
18+
run: |
19+
git remote add gitlab https://pradelpaw:${{ secrets.GITLAB_TOKEN }}@gitlab.com/sisdai-org/sisdai-componentes.git
20+
git push gitlab --all --force
21+
git push gitlab --tags --force

0 commit comments

Comments
 (0)