Skip to content

Commit

Permalink
Merge pull request #296 from yersan/fix-release-github-action
Browse files Browse the repository at this point in the history
Fix release action and stick open-api gen to a specific version
  • Loading branch information
yersan committed Feb 27, 2024
2 parents 71bc37a + c3ebaae commit 59dbf92
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,13 @@ jobs:

# Steps represent a sequence of tasks that will be executed as part of the job
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: 1.21.3
- name: Docker Login to Quay.io (main only)
uses: docker/login-action@v1.8.0
uses: docker/login-action@v3.0.0
with:
registry: ${{ env.REGISTRY }}
username: ${{ env.REGISTRY_USER }}
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -336,7 +336,7 @@ catalog-push: ## Push a catalog image.
.PHONY: openapi-gen
openapi-gen: $(OPENAPI_GEN) ## Download envtest-setup locally if necessary.
$(OPENAPI_GEN): $(LOCALBIN)
test -s $(LOCALBIN)/openapi-gen || GOBIN=$(LOCALBIN) go install k8s.io/kube-openapi/cmd/openapi-gen@latest
test -s $(LOCALBIN)/openapi-gen || GOBIN=$(LOCALBIN) go install k8s.io/kube-openapi/cmd/openapi-gen@649db6989aaecdd64cc4ea16b76e0d0067664001

.PHONY: dlv
dlv: $(DLV) ## Download envtest-setup locally if necessary.
Expand Down

0 comments on commit 59dbf92

Please sign in to comment.