Skip to content

Commit 2c0fbd3

Browse files
committed
tag build fix
1 parent dfee320 commit 2c0fbd3

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

.github/workflows/release.yml

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -111,11 +111,17 @@ jobs:
111111
112112
update-public-fullnode:
113113
runs-on: ubuntu-latest
114-
needs: [ release ]
114+
needs:
115115
steps:
116116
- name: Checkout
117117
uses: actions/checkout@v4
118118

119+
- name: echo current path and list files
120+
run: |
121+
echo $PWD
122+
ls -la
123+
124+
119125
- name: Download Citrea binary and Move required resources
120126
run: |
121127
sudo apt update
@@ -125,7 +131,7 @@ jobs:
125131
BINARY_URL="https://github.com/chainwayxyz/citrea/releases/download/${RELEASE}/citrea-${RELEASE}-linux-amd64"
126132
echo "Downloading binary from ${BINARY_URL}"
127133
# Download the binary using wget
128-
wget -O docker/build-push/nightly/citrea "${BINARY_URL}"
134+
wget -O ./docker/build-push/nightly/citrea "${BINARY_URL}"
129135
130136
# Make the downloaded file executable
131137
chmod +x docker/build-push/nightly/citrea

0 commit comments

Comments
 (0)