Skip to content

Commit

Permalink
docker build fix
Browse files Browse the repository at this point in the history
  • Loading branch information
cetin committed Jan 20, 2025
1 parent b9220ee commit e7ecb2d
Showing 1 changed file with 3 additions and 7 deletions.
10 changes: 3 additions & 7 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand All @@ -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
Expand Down

0 comments on commit e7ecb2d

Please sign in to comment.