Export compiled binary by default (#6)

* Update Makefile to export binaries by default

* Update Makefile to export binaries by default

* Update Makefile to export binaries by default

* Export binary with appropriate .exe extension

* Update README.md
This commit is contained in:
mTvare 2021-04-09 16:00:58 +05:30 committed by GitHub
parent 5ddcf24ff8
commit 9410652cf6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 20 additions and 3 deletions

View File

@ -17,10 +17,15 @@ jobs:
- name: make bin/app
run: make bin/app
- name: 'export binary'
uses: actions/upload-artifact@v2
with:
name: app
path: bin/app
- name: make clean
run: make clean
- name: make bin/app CXX=g++
run: make bin/app CXX=g++
- name: make clean
run: make clean
run: make clean

View File

@ -21,10 +21,15 @@ jobs:
- name: make bin/app
run: make bin/app
- name: 'export binary'
uses: actions/upload-artifact@v2
with:
name: app
path: bin/app
- name: make clean
run: make clean
- name: make bin/app CXX=g++
run: make bin/app CXX=g++
- name: make clean
run: make clean
run: make clean

View File

@ -21,6 +21,12 @@ jobs:
run: mingw32-make bin/app
shell: cmd
- name: 'export binary'
uses: actions/upload-artifact@v2
with:
name: app.exe
path: bin/app.exe
- name: make clean
run: mingw32-make clean
shell: cmd
@ -31,4 +37,4 @@ jobs:
- name: make clean
run: mingw32-make clean
shell: cmd
shell: cmd

View File

@ -120,6 +120,7 @@ It's pretty simple actually:
### Contributors
- [J-Mo63](https://github.com/J-Mo63) Jonathan Moallem - co-creator, maintainer
- [Raelr](https://github.com/Raelr) Aryeh Zinn - co-creator, maintainer
- [mTvare6](https://github.com/mTvare6) mTvare6 - contributor
## Licence