Skip to content

refactor

refactor #18

Workflow file for this run

name: Mirror to GitLab
on:
push:
branches: [ "main" ]
jobs:
mirror:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Push to GitLab
run: |
git remote add gitlab "https://$GITLAB_USERNAME:$GITLAB_TOKEN@gitlab.com/racpast/SNIBypassGUI.git"
git push --force gitlab HEAD:main
env:
GITLAB_USERNAME: ${{ secrets.GITLAB_USERNAME }}
GITLAB_TOKEN: ${{ secrets.GITLAB_TOKEN }}