commit 4afd25647a23c332ddc8349dd845415165b2e047 parent d4751dc2064f6ee02490acd37169a1377d8ffec7 Author: Alexey Kutepov <reximkut@gmail.com> Date: Fri, 2 Jul 2021 18:02:28 +0700 Merge pull request #2 from BillKek/master Added "artifacts" generation for download. Diffstat:
| M | .github/workflows/ci.yml | | | 11 | +++++++++++ |
1 file changed, 11 insertions(+), 0 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml @@ -54,3 +54,14 @@ jobs: shell: cmd run: | ./build_msvc.bat + - name: Prepare WindowsBinaries artifacts + shell: cmd + run: | + mkdir winbin + copy /B *.exe winbin + copy /B *.png winbin + - name: Upload WindowsBinaries artifacts + uses: actions/upload-artifact@v2 + with: + name: WindowsBinaries + path: ./winbin/
