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

chore: ci fix release.mk, publish-pkgset #3699

Merged
merged 1 commit into from
Nov 14, 2023
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
chore: ci fix release.mk, publish-pkgset
  • Loading branch information
digikata committed Nov 14, 2023
commit 0300f76cdb0988b158f1225bb3503346321f33ef
21 changes: 14 additions & 7 deletions makefiles/release.mk
Original file line number Diff line number Diff line change
Expand Up @@ -213,20 +213,27 @@ bump-fluvio: install-fluvio-package
$(DRY_RUN_ECHO) $(FLUVIO_BIN) package tag $(bin):$(PUBLIC_VERSION) --allow-missing-targets --tag=$(CHANNEL_TAG) --force; \
)

# publishes pkgset for stable e.g. 0.11.0
# uses FLUVIO_CLOUD_VERSION
publish-pkgset-stable: PKGSET_NAME=${REPO_VERSION}
publish-pkgset-stable: FLUVIO_VERSION=${REPO_VERSION}
publish-pkgset-stable:
./actions/publish-pkgset.sh

bump-fluvio-stable: CHANNEL_TAG=stable
bump-fluvio-stable: VERSION=$(REPO_VERSION)
bump-fluvio-stable: bump-fluvio
export PKGSET_NAME=$(VERSION)
export FLUVIO_VERSION=$(VERSION)
export FLUVIO_CLOUD_VERSION=$(FLUVIO_CLOUD_VERSION)
# publishes pkgset for "stable"
bump-fluvio-stable: PKGSET_NAME=stable
bump-fluvio-latest: FLUVIO_VERSION=${VERSION}
bump-fluvio-stable: bump-fluvio publish-pkgset-stable
./actions/publish-pkgset.sh

bump-fluvio-latest: CHANNEL_TAG=latest
bump-fluvio-latest: VERSION=$(subst -$(GIT_COMMIT_SHA),+$(GIT_COMMIT_SHA),$(DEV_VERSION_TAG))
# publishes pkgset for "latest"
bump-fluvio-latest: PKGSET_NAME=latest
bump-fluvio-latest: FLUVIO_VERSION=${VERSION}
bump-fluvio-latest: bump-fluvio
export PKGSET_NAME=$(VERSION)
export FLUVIO_VERSION=$(VERSION)
export FLUVIO_CLOUD_VERSION=$(FLUVIO_CLOUD_VERSION)
./actions/publish-pkgset.sh

update-public-installer-script-s3:
Expand Down
Loading