Skip to content

Commit 76aff56

Browse files
committed
wip: fix
1 parent a68d25d commit 76aff56

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

actions/install-local/action.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,15 +13,14 @@ runs:
1313
- name: Cache Earthly binary
1414
id: cache-earthly
1515
uses: actions/cache@v4
16-
if: inputs.skip_earthly == 'false'
1716
with:
1817
path: /usr/local/bin/earthly
1918
key: ${{ runner.os }}
2019
- name: Install Earthly
2120
if: steps.cache-earthly.outputs.cache-hit == false
2221
shell: bash
2322
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
2524
chmod +x /usr/local/bin/earthly
2625
/usr/local/bin/earthly bootstrap
2726
- name: Login to Earthly Cloud

actions/setup/action.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -181,9 +181,9 @@ runs:
181181
shell: bash
182182
run: |
183183
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
185185
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
187187
fi
188188
189189
chmod +x /usr/local/bin/earthly

0 commit comments

Comments
 (0)