From e7ecb2d4730d46fa6845bb3195ca67c451f12991 Mon Sep 17 00:00:00 2001 From: Cetin Date: Mon, 20 Jan 2025 21:10:42 +0300 Subject: [PATCH] docker build fix --- .github/workflows/release.yml | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index a5a995d5b..0919e8fe0 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -111,15 +111,11 @@ jobs: update-public-fullnode: runs-on: ubuntu-latest + needs: [ release ] steps: - name: Checkout uses: actions/checkout@v4 - - name: echo current path and list files - run: | - echo $PWD - ls -la - - name: Download Citrea binary and Move required resources run: | sudo apt update @@ -129,7 +125,7 @@ jobs: BINARY_URL="https://github.com/chainwayxyz/citrea/releases/download/${RELEASE}/citrea-${RELEASE}-linux-amd64" echo "Downloading binary from ${BINARY_URL}" # Download the binary using wget - wget -O ./docker/build-push/nightly/citrea "${BINARY_URL}" + wget -O docker/build-push/nightly/citrea "${BINARY_URL}" # Make the downloaded file executable chmod +x docker/build-push/nightly/citrea @@ -155,7 +151,7 @@ jobs: DOCKERHUB_REPOSITORY: citrea-fullnode IMAGE_TAG: testnet with: - context: . + context: docker/build-push/nightly/ file: docker/build-push/nightly/Dockerfile platforms: linux/amd64 push: true