tweak(docs/servers) updated servers (#643) #219
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: runner | |
on: push | |
jobs: | |
main: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-go@v2 | |
with: | |
go-version: "^1.13.1" | |
- run: env GOOS=windows GOARCH=amd64 go build -o ScavengeSurvive.exe | |
- run: env GOOS=linux GOARCH=amd64 go build -o ScavengeSurvive | |
- uses: actions/upload-artifact@v2 | |
with: | |
name: runner | |
path: | | |
ScavengeSurvive.exe | |
ScavengeSurvive |