cv #67
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
# Taken from: https://github.com/dmnemec/copy_file_to_another_repo_action | |
name: Push File | |
on: push | |
jobs: | |
copy-file: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Pushes test file | |
uses: dmnemec/copy_file_to_another_repo_action@main | |
env: | |
API_TOKEN_GITHUB: ${{ secrets.API_TOKEN_GITHUB }} | |
with: | |
source_file: 'cv.pdf' | |
destination_repo: 'rempsyc/starter-academic' | |
destination_folder: 'static' | |
user_email: '[email protected]' | |
user_name: 'rempsyc' | |
destination_branch: 'master' | |
commit_message: 'update cv' |