8000 fips mode version - use current tag with releases, else next tag by qrkourier · Pull Request #3126 · openziti/ziti · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

fips mode version - use current tag with releases, else next tag #3126

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jun 18, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion .github/workflows/publish-docker-images.yml
64C9
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,13 @@ jobs:
run: |
set -eoxo pipefail

echo GO_LDFLAGS="$($(go env GOPATH)/bin/ziti-ci -q go-build-flags -n)" | tee -a $GITHUB_OUTPUT
if [[ "$ZITI_CLI_TAG" =~ ^[0-9]+\.[0-9]+\.[0-9]+ ]]; then
# use current version tag
echo GO_LDFLAGS="$($(go env GOPATH)/bin/ziti-ci -q -t go-build-flags)" | tee -a $GITHUB_OUTPUT
else
# predict next version tag
echo GO_LDFLAGS="$($(go env GOPATH)/bin/ziti-ci -q go-build-flags -n)" | tee -a $GITHUB_OUTPUT
fi

- name: Push FIPS CLI Image to Hub
env:
Expand Down
Loading
0