Skip to content

Commit

Permalink
fix: release language plugins (#3292)
Browse files Browse the repository at this point in the history
Without this other projects can't run `ftl-language-go`
`ftl-language-java` `ftl-language-kotlin` `ftl-language-python`
  • Loading branch information
matt2e authored Nov 1, 2024
1 parent 7ab17ce commit 8eb4f88
Showing 1 changed file with 56 additions and 0 deletions.
56 changes: 56 additions & 0 deletions .goreleaser.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,62 @@ builds:
flags: -trimpath
ldflags: -s -w -buildid= -X github.com/TBD54566975/ftl.Version={{.Version}} -X github.com/TBD54566975/ftl.Timestamp={{ .CommitTimestamp }}
tags: [release]
- id: ftl-language-go
main: ./go-runtime/cmd/ftl-language-go
binary: ftl-language-go
env:
- CGO_ENABLED=0
goarch:
- amd64
- arm64
goos:
- linux
- darwin
flags: -trimpath
ldflags: -s -w -buildid= -X github.com/TBD54566975/ftl.Version={{.Version}} -X github.com/TBD54566975/ftl.Timestamp={{ .CommitTimestamp }}
tags: [release]
- id: ftl-language-java
main: ./jvm-runtime/cmd/ftl-language-java
binary: ftl-language-java
env:
- CGO_ENABLED=0
goarch:
- amd64
- arm64
goos:
- linux
- darwin
flags: -trimpath
ldflags: -s -w -buildid= -X github.com/TBD54566975/ftl.Version={{.Version}} -X github.com/TBD54566975/ftl.Timestamp={{ .CommitTimestamp }}
tags: [release]
- id: ftl-language-kotlin
main: ./jvm-runtime/cmd/ftl-language-kotlin
binary: ftl-language-kotlin
env:
- CGO_ENABLED=0
goarch:
- amd64
- arm64
goos:
- linux
- darwin
flags: -trimpath
ldflags: -s -w -buildid= -X github.com/TBD54566975/ftl.Version={{.Version}} -X github.com/TBD54566975/ftl.Timestamp={{ .CommitTimestamp }}
tags: [release]
- id: ftl-language-python
main: ./python-runtime/cmd/ftl-language-python
binary: ftl-language-python
env:
- CGO_ENABLED=0
goarch:
- amd64
- arm64
goos:
- linux
- darwin
flags: -trimpath
ldflags: -s -w -buildid= -X github.com/TBD54566975/ftl.Version={{.Version}} -X github.com/TBD54566975/ftl.Timestamp={{ .CommitTimestamp }}
tags: [release]

archives:
- format: tar.gz
Expand Down

0 comments on commit 8eb4f88

Please sign in to comment.