We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f4ec873 commit e4fb74aCopy full SHA for e4fb74a
.circleci/config.yml
@@ -2,15 +2,15 @@ version: 2
2
jobs:
3
build:
4
docker:
5
- - image: circleci/golang:1.13
+ - image: circleci/golang:1.14
6
steps:
7
- checkout
8
- run: go get -v -t -d ./...
9
- run: go test -v ./...
10
11
deploy:
12
13
14
15
16
@@ -26,7 +26,7 @@ jobs:
26
name: create release
27
command: |
28
if [ "$CIRCLE_TAG" ]; then
29
- ghr -t $GITHUB_TOKEN -u bitfield -r terraform-provider-checkly --replace $CIRCLE_TAG dist/
+ ghr -t $GITHUB_TOKEN -u checkly -r terraform-provider-checkly --replace $CIRCLE_TAG dist/
30
else
31
echo "no tagged version to deploy"
32
fi
0 commit comments