Compare commits

..

2 Commits

Author SHA1 Message Date
Jeff McCune
79ce2f8458 (#113) Fix goreleaser try 3 2024-04-09 16:35:38 -07:00
Jeff McCune
3d4ae44ddd (#113) Fix goreleaser try 2
goreleaser fails with Failure: plugin connect-query: could not find protoc plugin for name connect-query - please make sure protoc-gen-connect-query is installed and present on your $PATH
2024-04-09 16:23:35 -07:00
3 changed files with 12 additions and 5 deletions

View File

@@ -34,6 +34,16 @@ jobs:
with:
go-version: stable
# Necessary to run these outside of goreleaser, otherwise
# /home/runner/_work/holos/holos/internal/server/frontend/node_modules/.bin/protoc-gen-connect-query is not in PATH
- name: Install Deps
run: |
make go-deps
go generate ./...
make frontend-deps
make frontend
go mod tidy
- name: Import GPG key
uses: crazy-max/ghaction-import-gpg@v6
with:

View File

@@ -10,11 +10,8 @@ version: 1
before:
hooks:
- make go-deps
- go generate ./...
- make frontend-deps
- make frontend
- go mod tidy
- go generate ./...
builds:
- main: ./cmd/holos

View File

@@ -1 +1 @@
2
4