RC release v0.1.9-rc1
#90
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Windows Build | |
on: | |
push: | |
branches: [ "gh-pipeline" ] | |
pull_request: | |
branches: [ "gh-pipeline" ] | |
jobs: | |
build-and-upload: | |
runs-on: windows-latest | |
defaults: | |
run: | |
shell: msys2 {0} | |
steps: | |
- name: Checkout repo | |
uses: actions/checkout@v3 | |
- name: Install x64 gcc | |
uses: msys2/setup-msys2@v2 | |
with: | |
msystem: UCRT64 | |
update: true | |
install: | | |
mingw-w64-ucrt-x86_64-gcc | |
mingw-w64-ucrt-x86_64-make | |
mingw-w64-i686-gcc | |
mingw-w64-i686-make | |
- name: Compile chsrc x64 | |
run: | | |
mingw32-make.exe CI CI_Build_Name=chsrc-x64-windows | |
- name: Compile chsrc x86 | |
env: | |
MSYSTEM: MINGW32 | |
run: | | |
mingw32-make.exe CI CI_Build_Name=chsrc-x86-windows | |
- name: List files | |
run: ls *.exe | |
- name: Release | |
uses: softprops/action-gh-release@v1 | |
# if: startsWith(github.ref, 'refs/tags/') | |
with: | |
tag_name: pre | |
files: | | |
chsrc-x64-windows.exe | |
chsrc-x86-windows.exe | |
token: ${{ secrets.CHSRC_UPLOAD }} |