We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8db3832 commit b5a67b6Copy full SHA for b5a67b6
.github/workflows/main.yml
@@ -0,0 +1,21 @@
1
+name: Sync to GitLab
2
+
3
+on:
4
+ push:
5
+ branches:
6
+ - master
7
+ workflow_dispatch:
8
9
+jobs:
10
+ sync:
11
+ runs-on: ubuntu-latest
12
+ steps:
13
+ - name: Checkout code
14
+ uses: actions/checkout@v4
15
+ with:
16
+ fetch-depth: 0
17
18
+ - name: Push to GitLab mirror
19
+ run: |
20
+ git push --all https://gitlab-ci-token:${{ secrets.GITLAB_TOKEN }}@gitlab.com/Refloow/Steam-Auto-Friend.git
21
+ git push --tags https://gitlab-ci-token:${{ secrets.GITLAB_TOKEN }}@gitlab.com/Refloow/Steam-Auto-Friend.git
0 commit comments