Skip to content

更新m2p的commit注释 #20

更新m2p的commit注释

更新m2p的commit注释 #20

Workflow file for this run

name: main to gh-pages
on:
push:
branches:
- main
jobs:
m2p:
permissions:
contents: write
actions: write
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Merge and Push
run: |
git config user.name "Mdr-C-Tutorial"
git config user.email "[email protected]"
git checkout gh-pages
git merge main -m "Merge branch 'main' into gh-pages"
git push