Advance to release v0.2.1
#61
This file contains hidden or 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-build" ] | |
| pull_request: | |
| branches: [ "gh-build" ] | |
| 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_ARTIFACT_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.UPLOAD_TO_GITHUB }} |