Skip to content

Auto-update structured_md (2026-04-14 19:24:29) #173

Auto-update structured_md (2026-04-14 19:24:29)

Auto-update structured_md (2026-04-14 19:24:29) #173

Workflow file for this run

name: Mirror to SourceCraft
on:
push:
branches: [ main ]
jobs:
mirror:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
lfs: true
fetch-depth: 0
- name: Install Git LFS
run: |
sudo apt-get update
sudo apt-get install -y git-lfs
git lfs install
git lfs pull
- name: Configure Git
run: |
git config --global user.email "github@actions"
git config --global user.name "GitHub Actions"
- name: Push to SourceCraft
run: |
git remote add mirror https://git:${SOURCECRAFT_TOKEN}@git.sourcecraft.dev/kagv13/hmp.git
git push --mirror mirror
env:
SOURCECRAFT_TOKEN: ${{ secrets.SOURCECRAFT_TOKEN }}