Skip to content

Commit

Permalink
Fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
csandanov committed Jan 29, 2025
1 parent 1141489 commit ab1f2ef
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
- name: build and push
env:
VALKEY_VER: ${{ env.VALKEY80 }}
TAG: 8.0-${{ matrix.arch }}
ARCH: ${{ matrix.arch }}
PLATFORM: ${{ matrix.platform }}
run: |
make buildx-build
Expand Down Expand Up @@ -83,7 +83,7 @@ jobs:
- name: build and push
env:
VALKEY_VER: ${{ env.VALKEY72 }}
TAG: 7.2-${{ matrix.arch }}
ARCH: ${{ matrix.arch }}
PLATFORM: ${{ matrix.platform }}
run: |
make buildx-build
Expand Down
4 changes: 4 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,10 @@ NAME = valkey-$(VALKEY_VER)

PLATFORM ?= linux/arm64

ifneq ($(ARCH),)
override TAG := $(TAG)-$(ARCH)
endif

.PHONY: build buildx-build buildx-push test push shell run start stop logs clean release

default: build
Expand Down

0 comments on commit ab1f2ef

Please sign in to comment.