Skip to content

Update m2p.yml

Update m2p.yml #14

Workflow file for this run

name: main to gh-pages
on:
push:
branches:
- main
jobs:
m2p:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/chrckout@v4
with:
fetch-depth: 0
- name: Merge and Push
run: |
git config user.name "github-actions[bot]"
git config user.email "41898282+github-actions[bot]@users.noreply.github.com"
git checkout gh-pages
git merge main -m "sync from branch main"
git push