Skip to content
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

fix(ci): chainguard build is broken #5057

Merged
merged 2 commits into from
Dec 16, 2024
Merged
Show file tree
Hide file tree
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
6 changes: 3 additions & 3 deletions deploy/melange.yaml.tmpl
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package:
name: kotsadm-head
version: ${GIT_TAG}
version: "0.0.1" # our versioning is not compatible with apk
epoch: 0
description: Kotsadm package
copyright:
Expand Down Expand Up @@ -41,8 +41,8 @@ pipeline:
mv deploy/assets/postgres "${DESTDIR}/postgres"

# kotsadm and kots binaries
export VERSION=${{package.version}}
export GIT_TAG=${{package.version}}
export VERSION=${GIT_TAG}
export GIT_TAG=${GIT_TAG}

# Set environment variables from repository
source .image.env
Expand Down
2 changes: 1 addition & 1 deletion kurl_proxy/deploy/melange.yaml.tmpl
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package:
name: kurl-proxy-head
version: ${GIT_TAG}
version: "0.0.1" # our versioning is not compatible with apk
epoch: 0
description: kurl-proxy package
copyright:
Expand Down
2 changes: 1 addition & 1 deletion migrations/deploy/melange.yaml.tmpl
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package:
name: kotsadm-migrations-head
version: ${GIT_TAG}
version: "0.0.1" # our versioning is not compatible with apk
epoch: 0
description: kotsadm-migrations package
copyright:
Expand Down
Loading