-
Notifications
You must be signed in to change notification settings - Fork 1.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* GitHub workflow for releases * avoid renaming * add workflow for tests * fix workflow name * one yaml for all * fix yaml * add missing pipe * add conditional * also rename that other var * remove empty version * print the go version * add name to step * add go version when building * split files * remove dependency * delete travis and add badge * CHANGE NAMES TO LOWER CASE
- Loading branch information
Showing
5 changed files
with
87 additions
and
51 deletions.
There are no files selected for viewing
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,58 @@ | ||
name: release | ||
on: | ||
push: | ||
tags: | ||
- v* | ||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
strategy: | ||
matrix: | ||
GOOS: [ darwin, linux, windows ] | ||
GOARCH: [ amd64 ] | ||
include: | ||
- GOOS: darwin | ||
GOARCH: amd64 | ||
suffix: darwin-amd64 | ||
- GOOS: windows | ||
GOARCH: amd64 | ||
suffix: windows-amd64.exe | ||
- GOOS: linux | ||
GOARCH: amd64 | ||
suffix: linux-amd64 | ||
- GOOS: linux | ||
GOARCH: arm | ||
suffix: linux-armv7 | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- uses: actions/setup-go@v2 | ||
with: | ||
go-version: 1.16.x | ||
- name: Build ${{ matrix.suffix }} (GOOS=${{ matrix.GOOS }}, GOARCH=${{ matrix.GOARCH }}) | ||
env: | ||
GOOS: ${{ matrix.GOOS }} | ||
GOARCH: ${{ matrix.GOARCH }} | ||
run: | | ||
go version | ||
go build -o ./artifacts/transfersh-${GITHUB_REF##*/}-${{ matrix.suffix }} | ||
- uses: actions/upload-artifact@v2 | ||
name: Upload artifacts | ||
with: | ||
name: artifacts | ||
path: ./artifacts | ||
|
||
release: | ||
runs-on: ubuntu-latest | ||
needs: [ build ] | ||
steps: | ||
- uses: actions/download-artifact@v2 | ||
name: Download artifacts | ||
with: | ||
name: artifacts | ||
path: ./artifacts | ||
- name: Publish artifacts | ||
uses: softprops/action-gh-release@v1 | ||
with: | ||
files: './artifacts/*' | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
name: test | ||
on: | ||
push: | ||
branches: | ||
- "*" | ||
jobs: | ||
test: | ||
runs-on: ubuntu-latest | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
go_version: | ||
- 1.13.x | ||
- 1.14.x | ||
- 1.15.x | ||
- 1.16.x | ||
name: Test with ${{ matrix.go_version }} | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- uses: actions/setup-go@v1 | ||
with: | ||
go-version: ${{ matrix.go_version }} | ||
- name: Vet and test | ||
run: | | ||
go version | ||
go vet ./... | ||
go test ./... |
This file was deleted.
Oops, something went wrong.
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