Skip to content

added separate tests #29

added separate tests

added separate tests #29

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/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