File tree Expand file tree Collapse file tree 2 files changed +3
-4
lines changed Expand file tree Collapse file tree 2 files changed +3
-4
lines changed Original file line number Diff line number Diff line change @@ -13,15 +13,14 @@ runs:
13
13
- name : Cache Earthly binary
14
14
id : cache-earthly
15
15
uses : actions/cache@v4
16
- if : inputs.skip_earthly == 'false'
17
16
with :
18
17
path : /usr/local/bin/earthly
19
18
key : ${{ runner.os }}
20
19
- name : Install Earthly
21
20
if : steps.cache-earthly.outputs.cache-hit == false
22
21
shell : bash
23
22
run : |
24
- wget https://github.com/earthly/earthly/releases/latest/download/earthly-linux-amd64 -O /usr/local/bin/earthly
23
+ wget -q https://github.com/earthly/earthly/releases/latest/download/earthly-linux-amd64 -O /usr/local/bin/earthly
25
24
chmod +x /usr/local/bin/earthly
26
25
/usr/local/bin/earthly bootstrap
27
26
- name : Login to Earthly Cloud
Original file line number Diff line number Diff line change @@ -181,9 +181,9 @@ runs:
181
181
shell : bash
182
182
run : |
183
183
if [[ "${{ steps.earthly.outputs.version }}" == "latest" ]]; then
184
- wget https://github.com/earthly/earthly/releases/latest/download/earthly-linux-amd64 -O /usr/local/bin/earthly
184
+ wget -q https://github.com/earthly/earthly/releases/latest/download/earthly-linux-amd64 -O /usr/local/bin/earthly
185
185
else
186
- wget https://github.com/earthly/earthly/releases/download/v${{ steps.earthly.outputs.version}}/earthly-linux-amd64 -O /usr/local/bin/earthly
186
+ wget -q https://github.com/earthly/earthly/releases/download/v${{ steps.earthly.outputs.version}}/earthly-linux-amd64 -O /usr/local/bin/earthly
187
187
fi
188
188
189
189
chmod +x /usr/local/bin/earthly
You can’t perform that action at this time.
0 commit comments