Skip to content

Commit 2ea3e48

Browse files
committed
GitHub CI attempt 2 (sorry for the mess)
1 parent 04579d4 commit 2ea3e48

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.github/actions/cache_llvm-mos-sdk/action.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
name: Cache llvm-mos-sdk
22
description: Caches llvm-mos-sdk and builds it from source if missing
33
inputs:
4-
cc65Ref:
4+
llvm-mos-sdk-ref:
55
description: "llvm-mos-sdk Git Ref (used to checkout a fixed version)"
66
required: false
77
default: "master"
8-
cc65Path:
8+
llvm-mos-sdk-path:
99
description: "llvm-mos-sdk path to cache"
1010
required: false
1111
default: ${{ github.workspace }}/opt/llvm-mos-sdk
@@ -14,16 +14,16 @@ runs:
1414
steps:
1515
# Cache llvm-mos-sdk
1616
- uses: actions/cache@v4
17-
id: cache_cc65
17+
id: cache_llvm-mos-sdk
1818
with:
19-
path: ${{ inputs.llvm-mos-sdkPath }}
19+
path: ${{ inputs.llvm-mos-sdk-path }}
2020
key: ${{ runner.os }}-llvm-mos-sdk-${{ inputs.llvm-mos-sdkRef }}-${{ hashFiles('.github/actions/cache_llvm-mos-sdk/*') }}
2121
# Checkout llvm-mos-sdk
2222
- uses: actions/checkout@v4
2323
if: steps.cache_llvm-mos-sdk.outputs.cache-hit != 'true'
2424
with:
2525
repository: llvm-mos/llvm-mos-sdk
26-
ref: ${{ inputs.llvm-mos-sdkRef }}
26+
ref: ${{ inputs.llvm-mos-sdk-ref }}
2727
path: './llvm-mos-sdk'
2828
# Build llvm-mos-sdk
2929
#- if: steps.cache_llvm-mos-sdk.outputs.cache-hit != 'true'

0 commit comments

Comments
 (0)