We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5b04590 commit c25ffadCopy full SHA for c25ffad
1 file changed
.github/workflows/syncmirror.yml
@@ -0,0 +1,15 @@
1
+name: 'Sync with GL mirror'
2
+on: push
3
+
4
+jobs:
5
+ sync:
6
+ runs-on: ubuntu-latest
7
+ steps:
8
+ - uses: actions/checkout@v5
9
+ with:
10
+ submodules: 'true'
11
+ fetch-depth: 0
12
+ - name: Add mirror auth info
13
+ run: git remote add alternate https://AptiviCEO:${{ secrets.GL_APIKEY }}@gitlab.com/aptivi/analytics/NamesList.git
14
+ - name: Push to mirror
15
+ run: git push alternate
0 commit comments