We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2a7ecf6 commit b37f9efCopy full SHA for b37f9ef
actions/install-local/action.yml
@@ -15,11 +15,19 @@ runs:
15
with:
16
version: latest
17
- name: Login to Earthly Cloud
18
+ if: steps.cache-binary.outputs.cache-hit == false
19
shell: bash
20
run: |
21
earthly account login --token ${{ inputs.earthly_token }}
22
earthly org select Catalyst
23
+ - name: Cache binary
24
+ id: cache-binary
25
+ uses: actions/cache@v4
26
+ with:
27
+ path: /usr/local/bin/forge
28
+ key: ${{ runner.os }}-${{ github.sha }}
29
- name: Build Forge CLI
30
31
32
33
echo "::group::Forge CLI Earthly Build"
0 commit comments