123456789101112131415161718 |
- name: Save Godot build cache
- description: Save Godot build cache.
- inputs:
- cache-name:
- description: The cache base name (job name by default).
- default: "${{github.job}}"
- scons-cache:
- description: The scons cache path.
- default: "${{github.workspace}}/.scons-cache/"
- runs:
- 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}}
|