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
|
# Check https://circleci.com/docs/2.0/language-go/ for more details
|
||||||
version: 2
|
version: 2
|
||||||
jobs:
|
jobs:
|
||||||
build:
|
- build:
|
||||||
docker:
|
docker:
|
||||||
# specify the version
|
# specify the version
|
||||||
- image: liamg/golang-opengl
|
- image: liamg/golang-opengl
|
||||||
working_directory: /go/src/github.com/liamg/aminal
|
working_directory: /go/src/github.com/liamg/aminal
|
||||||
steps:
|
steps:
|
||||||
- checkout
|
- checkout
|
||||||
- run: make test
|
- run: make test
|
||||||
- run: make release
|
- run: make release
|
||||||
|
- tag_test:
|
||||||
|
requires:
|
||||||
|
- build
|
||||||
|
steps:
|
||||||
|
- run: echo YES
|
||||||
|
filters:
|
||||||
|
tags:
|
||||||
|
only: /.*/
|
||||||
|
|
Loading…
Reference in New Issue