1
1
Fork 0
mirror of https://github.com/QB64Official/qb64.git synced 2024-07-01 09:10:37 +00:00

Push code update back to repo

This commit is contained in:
Luke Ceddia 2020-01-04 22:18:31 +11:00
parent 5c1262e68f
commit 4990cb798d
2 changed files with 16 additions and 0 deletions

View file

@ -6,3 +6,10 @@ find . -type f -iname "*.a" -exec rm {} \;
find . -type f -iname "*.o" -exec rm {} \;
cd internal/source
rm debug_* recompile_*
cd ../..
git config --local user.email "flukiluke@gmail.com"
git config --local user.name "Autobuild Process"
git add internal/source
git commit -m "Update internal/source"

View file

@ -15,3 +15,12 @@ jobs:
run: .ci/bootstrap.sh
- name: Compile
run: .ci/compile.sh
- name: Update source
if: github.event_name == 'push'
run: .ci/update-source.sh
- name: Push to repository
if: github.event_name == 'push'
uses: ad-m/github-push-action@19caa5c351f47734055690f7d01aaaef2f9114d5
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
branch: githubactions