Files
snigdhaos-arctic/.github/workflows/gitlab.yml
Eshan Roy (Eshanized) f8f1db45f7 🧪 test(fix): branch: master
2024-06-18 04:05:05 +05:30

20 lines
415 B
YAML

name: Push to GitLab
on:
push:
branches:
- master
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2.3.3
- name: Push to GitLab
env:
GITLAB_REPO: ${{ secrets.GITLAB_REPO }}
GITLAB_TOKEN: ${{ secrets.GITLAB_TOKEN }}
run: |
git remote add gitlab $GITLAB_REPO
git push gitlab master