From 26d8ff4ad929252169a85c27920d66013a59462a Mon Sep 17 00:00:00 2001 From: Raphanus Lo Date: Fri, 7 Feb 2025 15:36:07 +0800 Subject: [PATCH] DO NOT MERGE --- .github/workflows/build.yml | 10 +++++----- Makefile | 4 ++-- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 1f694f72..c39c6ce3 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -74,11 +74,11 @@ jobs: - name: Checkout code uses: actions/checkout@v4 - - name: Login to Docker Hub - uses: docker/login-action@v3 - with: - username: ${{ secrets.DOCKER_USERNAME }} - password: ${{ secrets.DOCKER_PASSWORD }} + #- name: Login to Docker Hub + # uses: docker/login-action@v3 + # with: + # username: ${{ secrets.DOCKER_USERNAME }} + # password: ${{ secrets.DOCKER_PASSWORD }} # longhornio/longhorn-share-manager image - name: Build and publish image diff --git a/Makefile b/Makefile index 5a62a2db..78a7a5f8 100644 --- a/Makefile +++ b/Makefile @@ -27,9 +27,9 @@ buildx-machine: # - IID_FILE_FLAG: optional, options to generate image ID file .PHONY: workflow-image-build-push workflow-image-build-push-secure workflow-image-build-push: buildx-machine - MACHINE=$(MACHINE) OUTPUT_ARGS='--push' bash scripts/package + MACHINE=$(MACHINE) OUTPUT_ARGS='--load' bash scripts/package workflow-image-build-push-secure: buildx-machine - MACHINE=$(MACHINE) OUTPUT_ARGS='--push' IS_SECURE=true bash scripts/package + MACHINE=$(MACHINE) OUTPUT_ARGS='--load' IS_SECURE=true bash scripts/package .DEFAULT_GOAL := ci