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:
parent
5ddcf24ff8
commit
9410652cf6
7
.github/workflows/macOS.yml
vendored
7
.github/workflows/macOS.yml
vendored
@ -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
|
||||
|
7
.github/workflows/ubuntu.yml
vendored
7
.github/workflows/ubuntu.yml
vendored
@ -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
|
||||
|
8
.github/workflows/windows.yml
vendored
8
.github/workflows/windows.yml
vendored
@ -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
|
||||
|
@ -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
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user