Add xon_xoff enable/disable, bump version #108
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: Copy to Documentation Repo | |
on: [push] | |
jobs: | |
copy_md: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Copycat | |
uses: andstor/[email protected] | |
with: | |
personal_token: ${{ secrets.PERSONAL_TOKEN }} | |
dst_owner: newaetech | |
dst_repo_name: documentation-main | |
src_path: /docs/README.md | |
dst_path: /docs/Targets/CW310 Bergen Board.md | |
src_branch: main | |
dst_branch: master | |
copy_images: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Copycat | |
uses: andstor/[email protected] | |
with: | |
personal_token: ${{ secrets.PERSONAL_TOKEN }} | |
dst_owner: newaetech | |
dst_repo_name: documentation-main | |
src_path: /docs/Images/ | |
dst_path: /docs/Targets/ | |
src_branch: main | |
dst_branch: master | |