diff options
author | Thaddeus Crews <repiteo@outlook.com> | 2024-07-08 10:41:20 -0500 |
---|---|---|
committer | Thaddeus Crews <repiteo@outlook.com> | 2024-09-13 08:06:53 -0500 |
commit | 41a81f5360d231b4da75ef6debf42bdb39404b78 (patch) | |
tree | d5b8138905446635f8e08c413e77fc085ff4e44e /.github/actions/godot-cache-save | |
parent | 74de05a01c8716a42d4e3427f607d7bea76b35e5 (diff) | |
download | redot-engine-41a81f5360d231b4da75ef6debf42bdb39404b78.tar.gz |
Style: Format yaml files
Diffstat (limited to '.github/actions/godot-cache-save')
-rw-r--r-- | .github/actions/godot-cache-save/action.yml | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/.github/actions/godot-cache-save/action.yml b/.github/actions/godot-cache-save/action.yml index b7cbf91f94..df877cec67 100644 --- a/.github/actions/godot-cache-save/action.yml +++ b/.github/actions/godot-cache-save/action.yml @@ -3,15 +3,16 @@ description: Save Godot build cache. inputs: cache-name: description: The cache base name (job name by default). - default: "${{github.job}}" + default: ${{ github.job }} scons-cache: description: The SCons cache path. - default: "${{github.workspace}}/.scons-cache/" + default: ${{ github.workspace }}/.scons-cache/ + runs: - using: "composite" + using: composite steps: - name: Save SCons cache directory uses: actions/cache/save@v4 with: - path: ${{inputs.scons-cache}} - key: ${{inputs.cache-name}}-${{env.GODOT_BASE_BRANCH}}-${{github.ref}}-${{github.sha}} + path: ${{ inputs.scons-cache }} + key: ${{ inputs.cache-name }}-${{ env.GODOT_BASE_BRANCH }}-${{ github.ref }}-${{ github.sha }} |