File tree Expand file tree Collapse file tree 1 file changed +8
-2
lines changed Expand file tree Collapse file tree 1 file changed +8
-2
lines changed Original file line number Diff line number Diff line change @@ -111,11 +111,17 @@ jobs:
111
111
112
112
update-public-fullnode :
113
113
runs-on : ubuntu-latest
114
- needs : [ release ]
114
+ needs :
115
115
steps :
116
116
- name : Checkout
117
117
uses : actions/checkout@v4
118
118
119
+ - name : echo current path and list files
120
+ run : |
121
+ echo $PWD
122
+ ls -la
123
+
124
+
119
125
- name : Download Citrea binary and Move required resources
120
126
run : |
121
127
sudo apt update
@@ -125,7 +131,7 @@ jobs:
125
131
BINARY_URL="https://github.com/chainwayxyz/citrea/releases/download/${RELEASE}/citrea-${RELEASE}-linux-amd64"
126
132
echo "Downloading binary from ${BINARY_URL}"
127
133
# 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}"
129
135
130
136
# Make the downloaded file executable
131
137
chmod +x docker/build-push/nightly/citrea
You can’t perform that action at this time.
0 commit comments