Skip to content

fixed links

fixed links #24

Workflow file for this run

name: Copy File on Commit
on: [ push ]
permissions:
contents: write
jobs:
file-copy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Copy file
run: |
cp src/raynodes/import/RnImport.h include/
- name: Commit file if changed
run: |
git config --local user.email "[email protected]"
git config --local user.name "GitHub Action"
git add include/RnImport.h
git commit -m "Updated include" || echo "No changes to commit"
git push