File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed 
.github/actions/cache_llvm-mos-sdk Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change 11name : Cache llvm-mos-sdk 
22description : Caches llvm-mos-sdk and builds it from source if missing 
33inputs :
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'
 
 
   
 
     
   
   
          
    
    
     
    
      
     
     
    You can’t perform that action at this time.
  
 
    
  
    
      
        
     
       
      
     
   
 
    
    
  
 
  
 
     
    
0 commit comments