Skip to content

Commit

Permalink
added backend dir to goreleaser config (#344)
Browse files Browse the repository at this point in the history
  • Loading branch information
enrichman authored Sep 7, 2023
1 parent 1e76e0a commit 0a97f95
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions backend/.goreleaser.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ archives:

before:
hooks:
- sh -c "cd src/jetstream && go mod download"
- sh -c "cd backend/src/jetstream && go mod download"

dist: /tmp/_dist

Expand All @@ -21,7 +21,7 @@ builds:

# amd64
- id: epinio-ui-amd64
dir: src/jetstream
dir: backend/src/jetstream
binary: epinio-ui
ldflags:
- -w -s -X "main.appVersion={{ .Tag }}"
Expand All @@ -35,7 +35,7 @@ builds:

# arm64
- id: epinio-ui-arm64
dir: src/jetstream
dir: backend/src/jetstream
binary: epinio-ui
ldflags:
- -w -s -X "main.appVersion={{ .Tag }}"
Expand All @@ -49,7 +49,7 @@ builds:

# s390x
- id: epinio-ui-s390x
dir: src/jetstream
dir: backend/src/jetstream
binary: epinio-ui
ldflags:
- -w -s -X "main.appVersion={{ .Tag }}"
Expand Down

0 comments on commit 0a97f95

Please sign in to comment.