Skip to content

Commit 4978b7d

Browse files
authored
Change version to 0.0.1-beta (#18)
1 parent b2d0c54 commit 4978b7d

File tree

2 files changed

+13
-13
lines changed

2 files changed

+13
-13
lines changed

.goreleaser.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Visit https://goreleaser.com for documentation on how to customize this
22
# behavior.
33
env:
4-
- PROVIDER_VERSION=0.1-beta
4+
- PROVIDER_VERSION=0.0.1-beta
55
before:
66
hooks:
77
# this is just an example and not a requirement for provider building/publishing
@@ -33,12 +33,12 @@ builds:
3333
- goos: darwin
3434
goarch: '386'
3535
binary: terraform-provider-delphix
36-
hooks:
37-
post:
36+
hooks:
37+
post:
3838
- cmd: ./dev_copy.sh
39-
env:
39+
env:
4040
- CP_PATH={{ .Path }}
41-
- CP_TARGET={{ .Target }}
41+
- CP_TARGET={{ .Target }}
4242
- CP_VERSION={{ .Env.PROVIDER_VERSION }}
4343
archives:
4444
- format: zip
@@ -52,7 +52,7 @@ checksum:
5252
signs:
5353
- artifacts: checksum
5454
args:
55-
# if you are using this in a GitHub action or some other automated pipeline, you
55+
# if you are using this in a GitHub action or some other automated pipeline, you
5656
# need to pass the batch flag to indicate its not interactive.
5757
- "--batch"
5858
- "--local-user"
@@ -68,4 +68,4 @@ release:
6868
# If you want to manually examine the release before its live, uncomment this line:
6969
# draft: true
7070
changelog:
71-
skip: true
71+
skip: true

GNUmakefile

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ HOSTNAME=delphix.com
33
NAMESPACE=dct
44
NAME=delphix
55
BINARY=terraform-provider-${NAME}
6-
VERSION=0.1-beta
6+
VERSION=0.0.1-beta
77
OS_ARCH=darwin_amd64
88

99
default: install
@@ -29,9 +29,9 @@ install: build
2929
mkdir -p ~/.terraform.d/plugins/${HOSTNAME}/${NAMESPACE}/${NAME}/${VERSION}/${OS_ARCH}
3030
mv ${BINARY} ~/.terraform.d/plugins/${HOSTNAME}/${NAMESPACE}/${NAME}/${VERSION}/${OS_ARCH}
3131

32-
test:
33-
go test -i $(TEST) || exit 1
34-
echo $(TEST) | xargs -t -n4 go test $(TESTARGS) -timeout=30s -parallel=4
32+
test:
33+
go test -i $(TEST) || exit 1
34+
echo $(TEST) | xargs -t -n4 go test $(TESTARGS) -timeout=30s -parallel=4
3535

36-
testacc:
37-
TF_ACC=1 go test $(TEST) -v $(TESTARGS) -timeout 120m
36+
testacc:
37+
TF_ACC=1 go test $(TEST) -v $(TESTARGS) -timeout 120m

0 commit comments

Comments
 (0)