mirror of https://github.com/liamg/aminal.git
release script
This commit is contained in:
parent
261424c9ec
commit
cafb261260
|
@ -3,12 +3,20 @@
|
|||
# Check https://circleci.com/docs/2.0/language-go/ for more details
|
||||
version: 2
|
||||
jobs:
|
||||
build:
|
||||
docker:
|
||||
# specify the version
|
||||
- image: liamg/golang-opengl
|
||||
working_directory: /go/src/github.com/liamg/aminal
|
||||
steps:
|
||||
- checkout
|
||||
- run: make test
|
||||
- run: make release
|
||||
- build:
|
||||
docker:
|
||||
# specify the version
|
||||
- image: liamg/golang-opengl
|
||||
working_directory: /go/src/github.com/liamg/aminal
|
||||
steps:
|
||||
- checkout
|
||||
- run: make test
|
||||
- run: make release
|
||||
- tag_test:
|
||||
requires:
|
||||
- build
|
||||
steps:
|
||||
- run: echo YES
|
||||
filters:
|
||||
tags:
|
||||
only: /.*/
|
||||
|
|
Loading…
Reference in New Issue