Skip to content

Update base-mirror.yml #1

Update base-mirror.yml

Update base-mirror.yml #1

Workflow file for this run

name: Mirror to Public Repo
on:
push:
branches:
- main
jobs:
mirror:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v6
with:
fetch-depth: 0
persist-credentials: false
- name: Push to public repoo
run: |
git remote add public https://x-access-token:${{ secrets.DOYLIB_BASE_TOKEN }}@github.com/DO-YAC/doylib.base.git
git push public main --force