Skip to content
This repository has been archived by the owner on Oct 18, 2024. It is now read-only.

Commit

Permalink
feat: sync changes to gitlab
Browse files Browse the repository at this point in the history
  • Loading branch information
Bashamega authored Oct 12, 2024
1 parent 6728fe2 commit 35929cf
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions .github/workflows/sync.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
name: Sync to GitLab

on:
push:
branches:
- main # Trigger on pushes to the main branch

jobs:
push-to-gitlab:
runs-on: ubuntu-latest

steps:
- name: Checkout code
uses: actions/checkout@v3
with:
fetch-depth: 0 # Fetch all commit history to avoid shallow clone issues

- name: Set up Git for GitLab
run: |
git config --global user.name "GitHub Actions"
git config --global user.email "actions@github.com"
- name: Add GitLab remote
env:
GITLAB_TOKEN: ${{ secrets.GITLAB_TOKEN }}
run: |
git remote add gitlab https://oauth2:$GITLAB_TOKEN@gitlab.com/bashaHub/TrendTrack.git
git fetch gitlab
- name: Push changes to GitLab
run: |
git push gitlab HEAD:main --force # Push the current branch to the main branch on GitLab

0 comments on commit 35929cf

Please sign in to comment.