Skip to content
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: 4 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -278,7 +278,7 @@ jobs:
run: git fetch --prune --unshallow

- name: Set Crossplane Version
run: make crossplane.version > $GITHUB_ENV
run: make get-versions > $GITHUB_ENV

- name: Setup Crane
uses: imjasonh/setup-crane@v0.4
Expand All @@ -293,4 +293,6 @@ jobs:

- name: Copy Upbound Crossplane image to Spaces Artifacts Registry
if: env.XPKG_SPACES_ARTIFACTS_ACCESS_ID != ''
run: crane cp xpkg.upbound.io/upbound/crossplane:${CROSSPLANE_VERSION} xpkg.upbound.io/spaces-artifacts/crossplane:${CROSSPLANE_VERSION}
run: |
crane cp xpkg.upbound.io/upbound/crossplane:${CROSSPLANE_VERSION} xpkg.upbound.io/spaces-artifacts/crossplane:${CROSSPLANE_VERSION}
crane cp xpkg.upbound.io/upbound/universal-crossplane:${HELM_CHART_VERSION} xpkg.upbound.io/spaces-artifacts/universal-crossplane:${HELM_CHART_VERSION}
3 changes: 2 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -129,8 +129,9 @@ crossplane:
@cat $(HELM_CHARTS_DIR)/$(PACKAGE_NAME)/uxp-values.yaml >> $(HELM_CHARTS_DIR)/$(PACKAGE_NAME)/values.yaml
@$(OK) Crossplane chart has been fetched

crossplane.version:
get-versions:
@echo CROSSPLANE_VERSION=$(CROSSPLANE_TAG)
@echo HELM_CHART_VERSION=$(HELM_CHART_VERSION)

eksaddon.chart: crossplane
@$(INFO) Generating values.yaml for the EKS Add-on chart
Expand Down