Beta release 0.1.9.Beta1
#41
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: Linux x64 Build | |
on: | |
push: | |
branches: [ "gh-pipeline" ] | |
pull_request: | |
branches: [ "gh-pipeline" ] | |
jobs: | |
x64-linux-build-and-upload: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repo | |
uses: actions/checkout@v3 | |
- name: Compile chsrc x64 | |
run: | | |
make CI CI_Build_Name=chsrc-x64-linux | |
- name: List files | |
run: ls *-linux | |
- name: Release | |
uses: softprops/action-gh-release@v1 | |
# if: startsWith(github.ref, 'refs/tags/') | |
with: | |
tag_name: pre | |
files: | | |
chsrc-x64-linux | |
token: ${{ secrets.CHSRC_UPLOAD }} |