Skip to content

Restructure Quick Start: lead with AI-assisted install and update #32

Restructure Quick Start: lead with AI-assisted install and update

Restructure Quick Start: lead with AI-assisted install and update #32

Workflow file for this run

name: Mirror to GitLab
on:
push:
branches: ['**']
tags: ['**']
jobs:
mirror:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Push to GitLab
env:
GITLAB_TOKEN: ${{ secrets.GITLAB_TOKEN }}
run: |
git remote add gitlab "https://oauth2:${GITLAB_TOKEN}@gitlab.com/bokiko/${{ github.event.repository.name }}.git"
git push gitlab --all --force
git push gitlab --tags --force