v1.13.5 #21
Workflow file for this run
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: release linux gui binarie | |
| on: | |
| release: | |
| types: [created] | |
| jobs: | |
| release-binaries: | |
| name: release linux gui binarie | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - uses: wangyoucao577/[email protected] | |
| with: | |
| pre_command: "apt update && apt install -y make libgtk-3-dev" | |
| github_token: ${{ secrets.GITHUB_TOKEN }} | |
| binary_name: "twmd-GUI" | |
| goversion: "1.22" | |
| overwrite: true | |
| retry: 10 | |
| build_command: "make linux-gui" | |
| md5sum: FALSE | |
| goos: linux | |
| goarch: amd64 |