Skip to content

Commit

Permalink
Merge branch 'develop'
Browse files Browse the repository at this point in the history
  • Loading branch information
sksat committed Dec 25, 2019
2 parents 0ce3a7f + faf7dcf commit 631836a
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,9 @@ jobs:
cd build
cmake -G "Visual Studio 16 2019" -A x64 -config Release ..
- name: build on ${{ matrix.os }}
run: cmake --build build --parallel
run: |
cmake --build build --parallel
ls build/bin
- name: create COPYING
run: |
Expand Down Expand Up @@ -71,7 +73,9 @@ jobs:
run: zip -r trochia-$OS.zip trochia/
- name: make archive file for Windows
if: matrix.os == 'windows-latest'
run: 7z a trochia-Windows.zip trochia
run: |
cp build/bin/Debug/trochia.exe trochia
7z a trochia-Windows.zip trochia
- name: Upload archive as artifact
uses: actions/upload-artifact@v1
Expand Down

0 comments on commit 631836a

Please sign in to comment.