From ee2bd6a1270fc1399d02edacfaee24b30cc1b376 Mon Sep 17 00:00:00 2001 From: Hussam Date: Wed, 23 Oct 2024 17:40:42 -0500 Subject: [PATCH] Bugfix for build-release --- .github/workflows/build-release.yml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build-release.yml b/.github/workflows/build-release.yml index 5039754..eb5f80c 100644 --- a/.github/workflows/build-release.yml +++ b/.github/workflows/build-release.yml @@ -64,7 +64,7 @@ jobs: uses: docker/build-push-action@v5 with: context: . - dockerfile: dockerfile.build + file: Dockerfile.build push: true tags: | quainetwork/quai-gpu-miner-build:${{ github.event.inputs.tag_version }} @@ -79,11 +79,12 @@ jobs: run: | sudo mv output/quai-gpu-miner.tar.gz output/quai-gpu-miner-${{ github.event.inputs.tag_version }}.tar.gz - - name: Build the dockerfile.run image (no push) + # Build the dockerfile.run image (no push) + - name: Build the dockerfile.run image uses: docker/build-push-action@v5 with: context: . - dockerfile: dockerfile.run + file: Dockerfile.run push: false tags: | quainetwork/quai-gpu-miner-run:${{ github.event.inputs.tag_version }}