Skip to content

Commit c662cac

Browse files
authored
Fix go modules (#5)
1 parent 3506254 commit c662cac

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

.circleci/config.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -11,29 +11,29 @@ jobs:
1111
- run: |
1212
go build ./...
1313
14-
release-build:
14+
release:
1515
working_directory: /virgo
1616
docker:
1717
- image: golang:1.12.7-stretch
1818
steps:
1919
- checkout
2020
- run: |
21-
go build ./...
21+
go build
2222
mv virgo virgo-$CIRCLE_TAG
2323
go run github.com/tcnksm/ghr -replace -token ed25266b85a37f0e84e44700ef5f067c081c6f0b -username anastop -repository virgo $CIRCLE_TAG virgo-$CIRCLE_TAG
2424
2525
2626
workflows:
2727
version: 2
28-
build-workflow:
28+
untagged-build:
2929
jobs:
30-
- build:
30+
- build:
3131
filters:
3232
tags:
3333
only: /^v.*/
34-
- release-build:
35-
requires:
36-
- build
34+
tagged-build:
35+
jobs:
36+
- release:
3737
filters:
3838
tags:
3939
only: /^v.*/

0 commit comments

Comments
 (0)