test: output string can be out of order in TestCmdKill #13
Workflow file for this run
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: Release | |
on: | |
push: | |
tags: | |
- v[0-9]+.[0-9]+* | |
jobs: | |
releases-matrix: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Go | |
uses: actions/setup-go@v2 | |
with: | |
go-version: 1.18 | |
- name: Build | |
run: | | |
CGO_ENABLED=0 GOARCH=amd64 make full && mv -f bin/gshell bin/gshell.amd64 | |
CGO_ENABLED=0 GOARCH=mips64 make full && mv -f bin/gshell bin/gshell.mips64 | |
CGO_ENABLED=0 GOARCH=arm64 make full && mv -f bin/gshell bin/gshell.arm64 | |
md5sum bin/gshell* > bin/md5sum | |
rm -f bin/buildtag bin/gittag | |
- name: Upload files to release | |
uses: svenstaro/upload-release-action@v2 | |
with: | |
repo_token: ${{ secrets.GITHUB_TOKEN }} | |
file: bin/* | |
tag: ${{ github.ref }} | |
overwrite: true | |
file_glob: true |