Skip to content

Update merge-to-docs-branch.yml #23

Update merge-to-docs-branch.yml

Update merge-to-docs-branch.yml #23

name: Merge to Docs Branch
on:
push:
branches:
- develop
jobs:
merge-to-docs:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Merge to Docs Branch
run: |
git config user.name "andsonder"
git config user.email "changlu@keter.top"
git config pull.rebase false
git fetch --all
git pull origin develop --allow-unrelated-histories --no-edit
git checkout -b docs origin/docs
git pull origin docs --allow-unrelated-histories --no-edit
git pull origin develop --allow-unrelated-histories --no-edit
git remote add origin_token https://${{ secrets.GITHUB_TOKEN }}@github.com/PaddleJitLab/CUDATutorial
git push origin_token docs