1
0
Fork 0
mirror of https://code.forgejo.org/actions/cache.git synced 2025-04-05 05:47:48 +02:00

Save cache on failure action update

This commit is contained in:
Sankalp Kotewar 2022-11-17 19:18:01 +00:00 committed by GitHub
parent cd1e32a41b
commit cad5946950
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -18,6 +18,9 @@ inputs:
description: 'Fail the workflow if the cache is not found for the given key.'
required: false
default: "false"
save-on-failure:
description: 'Save build cache despite of failure in the job'
default: "false"
outputs:
cache-hit:
description: 'A boolean value to indicate an exact match was found for the primary key'
@ -25,7 +28,7 @@ runs:
using: 'node16'
main: 'dist/restore/index.js'
post: 'dist/save/index.js'
post-if: 'success()'
post-if: success() || inputs.save-on-failure == "true"
branding:
icon: 'archive'
color: 'gray-dark'