We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 002957b commit 056104aCopy full SHA for 056104a
1 file changed
.github/workflows/release-cli.yaml
@@ -46,6 +46,9 @@ jobs:
46
# Strip the `v` prefix if it exists, as our tags are in the format `v0.2.0` but we want the version to be `0.2.0`
47
echo "TAG=${TAG#v}" >> "$GITHUB_ENV"
48
49
+ # Build the Darwin binaries separately as we are not pushing Docker images for Darwin.
50
+ # The push_image job will already build the Linux binaries before building the Docker image.
51
+ - run: make -C cli build GOOS_LIST="darwin" GOARCH_LIST="amd64 arm64"
52
- run: make -C cli push_image
53
54
# If it is an RC, upload the release bundle as an artifact, as we won't be generating
0 commit comments