Skip to content

Merge branch 'update-release-notes-2024-03-01' into 'main' #174

Merge branch 'update-release-notes-2024-03-01' into 'main'

Merge branch 'update-release-notes-2024-03-01' into 'main' #174

Workflow file for this run

name: GitlabSync
on:
- push
jobs:
sync:
runs-on: ubuntu-latest
name: Git Repo Sync
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 10
- name: Setup gitlab remote
env:
GITLAB_PUSH_URL_WITH_TOKEN: ${{ secrets.GITLAB_PUSH_URL_WITH_TOKEN }}
run: git remote add target ${GITLAB_PUSH_URL_WITH_TOKEN}
- name: Push the changes
run: git push -f --all target
- name: Push the tags
run: git push -f --tags target