Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
isindir committed Jan 11, 2024
1 parent d5e30d9 commit f81171c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -184,4 +184,4 @@ jobs:
password: ${{ secrets.DOCKERHUB_PASS }}

- name: Docker build
run: make docker-cross-build
run: make docker-cross-build-no-cache
3 changes: 3 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -155,6 +155,9 @@ docker-login: ## Performs logging to dockerhub using DOCKERHUB_USERNAME and DOCK
docker-cross-build: ## Build multi-arch docker image.
docker buildx build --cache-from=${IMG_CACHE} --cache-to=${IMG_CACHE} --platform ${BUILDX_PLATFORMS} -t ${IMG} .

docker-cross-build-no-cache: ## Build multi-arch docker image without using cache.
docker buildx build --platform ${BUILDX_PLATFORMS} -t ${IMG} .

docker-build-dont-test: generate fmt vet ## Build the docker image without running tests.
docker build -t ${IMG} .
docker tag ${IMG} ${IMG_LATEST}
Expand Down

0 comments on commit f81171c

Please sign in to comment.