Skip to content

Commit

Permalink
test fix
Browse files Browse the repository at this point in the history
test fix
  • Loading branch information
mgfritch committed Dec 5, 2024
1 parent ced7588 commit 403e474
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ on:
types: [published]

env:
REGISTRY_IMAGE: rancher/hardened-calico
GITHUB_ACTION_TAG: ${{ github.ref_name }}

jobs:
Expand All @@ -23,6 +22,7 @@ jobs:
run: |
echo "$(make -s log | grep TAG)" >> "$GITHUB_ENV"
echo "$(make -s log | grep ARCH)" >> "$GITHUB_ENV"
echo "$(make -s log | grep REGISTRY_IMAGE)" >> "$GITHUB_ENV"
- name: Print ENV values
id: print_Envs
Expand Down
5 changes: 3 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,8 @@ TAG := v3.29.1$(BUILD_META)
endif

REPO ?= rancher
REGISTRY_IMAGE ?= $(REPO)/hardened-calico
IMAGE ?= $(REGISTRY_IMAGE):$(TAG)
REGISTRY_IMAGE = $(REPO)/hardened-calico
IMAGE = $(REGISTRY_IMAGE):$(TAG)

LABEL_ARGS = $(foreach label,$(META_LABELS),--label $(label))

Expand Down Expand Up @@ -91,6 +91,7 @@ log:
@echo "ARCH=$(ARCH)"
@echo "TAG=$(TAG:$(BUILD_META)=)"
@echo "REPO=$(REPO)"
@echo "REGISTRY_IMAGE=$(REGISTRY_IMAGE)"
@echo "PKG=$(PKG)"
@echo "SRC=$(SRC)"
@echo "BUILD_META=$(BUILD_META)"
Expand Down

0 comments on commit 403e474

Please sign in to comment.