Fix tss struct and minor typo #133
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Sync gh-pages branch with master branch | |
on: | |
push: | |
paths-ignore: [ '**/pandoc_workflow.yaml' ] | |
branches: [ master, feature-sync-pages ] | |
jobs: | |
do_sync: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: setup git user | |
run: > | |
git config --local user.name "sync-gh-pages-script"; | |
git config --local user.email "[email protected]"; | |
- name: merge and push | |
run: > | |
git fetch; | |
git checkout gh-pages; | |
git merge origin/master --allow-unrelated-histories -X theirs; | |
git push origin gh-pages; |