Skip to content

Commit

Permalink
retry adding plural to path
Browse files Browse the repository at this point in the history
  • Loading branch information
maciaszczykm committed Nov 20, 2024
1 parent 9d1b0ea commit 1d9333f
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/e2e.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,6 @@ jobs:
- name: Setup Terraform
uses: hashicorp/setup-terraform@v3
- name: Setup Plural CLI
run: go build -ldflags '$(LDFLAGS)' -o $(GOBIN)/plural ./cmd/plural
run: make install-cli
- name: Print Plural CLI version
run: plural version
8 changes: 7 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,14 @@ git-push:
git push

.PHONY: install
install:
install: install-cli install-ctl

.PHONY: install-cli
install-cli:
go build -ldflags '$(LDFLAGS)' -o $(GOBIN)/plural ./cmd/plural

.PHONY: install-ctl
install-ctl:
go build -ldflags '$(LDFLAGS)' -o $(GOBIN)/plrlctl ./cmd/plrlctl

.PHONY: build-cli
Expand Down

0 comments on commit 1d9333f

Please sign in to comment.