Skip to content
This repository has been archived by the owner on Mar 19, 2021. It is now read-only.

Commit

Permalink
Merge pull request #23 from babbel/drop-go-get
Browse files Browse the repository at this point in the history
Fix release workflow
  • Loading branch information
fmasuhr authored Jun 30, 2020
2 parents c71e95d + 6a2202f commit 4f74cb8
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 11 deletions.
8 changes: 0 additions & 8 deletions .github/workflows/terraform_provider.yml
Original file line number Diff line number Diff line change
Expand Up @@ -124,14 +124,6 @@ jobs:
- name: check out code into the Go module directory
uses: actions/checkout@v2

- name: get dependencies
run: |
go get -v -t -d ./...
if [ -f Gopkg.toml ]; then
curl https://raw.githubusercontent.com/golang/dep/master/install.sh | sh
dep ensure
fi
- name: parse version string
id: parse_version
run: |
Expand Down
6 changes: 3 additions & 3 deletions GNUmakefile
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,10 @@ build: fmtcheck
go install

build-darwin:
GOOS=darwin GOARCH=amd64 go build
GOOS=darwin GOARCH=amd64 go build

build-linux:
GOOS=linux GOARCH=amd64 CGO_ENABLED=0 go build
GOOS=linux GOARCH=amd64 CGO_ENABLED=0 go build

fmt:
@echo "==> Fixing source code with gofmt..."
Expand Down Expand Up @@ -72,4 +72,4 @@ ifeq (,$(wildcard $(GOPATH)/src/$(WEBSITE_REPO)))
endif
@$(MAKE) -C $(GOPATH)/src/$(WEBSITE_REPO) website-provider-test PROVIDER_PATH=$(shell pwd) PROVIDER_NAME=$(PKG_NAME)

.PHONY: build test testacc vet fmt fmtcheck lint tools test-compile website website-lint website-test
.PHONY: build build-darwin build-linux test testacc vet fmt fmtcheck lint tools test-compile website website-lint website-test

0 comments on commit 4f74cb8

Please sign in to comment.