This repository has been archived by the owner on Apr 30, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Svetlin Ralchev
committed
Dec 13, 2019
1 parent
205bd72
commit 8b3e3d2
Showing
3 changed files
with
25 additions
and
28 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,22 @@ | ||
name: release | ||
|
||
on: | ||
push: | ||
tags: | ||
- 'v*' | ||
|
||
jobs: | ||
pipeline: | ||
name: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@master | ||
- name: Set up Golang | ||
uses: actions/setup-go@v1 | ||
with: | ||
go-version: '1.13.x' | ||
- name: Install Golang tools | ||
run: GO111MODULE=on go install github.com/mitchellh/gox | ||
- name: Build project | ||
run: ls -l $GOPATH && ls -l $GOBIN |
This file was deleted.
Oops, something went wrong.