mirror of
https://gitea.com/actions/go-hashfiles.git
synced 2025-04-06 14:19:37 +00:00
add files
This commit is contained in:
21
action.yml
Normal file
21
action.yml
Normal file
@ -0,0 +1,21 @@
|
||||
name: 'Go HashFiles'
|
||||
description: 'Compute the SHA256 hash of specified files'
|
||||
inputs:
|
||||
workdir:
|
||||
description: >
|
||||
The working directory for the action.
|
||||
default: ${{ github.workspace }}
|
||||
required: false
|
||||
patterns:
|
||||
description: >
|
||||
The patterns used to match files. You can input multiple patterns seperated by `\n`.
|
||||
We recommand using `|-` to concat the patterns in `.yml` files.
|
||||
required: true
|
||||
outputs:
|
||||
hash:
|
||||
description: 'The computed hash result'
|
||||
matched-files:
|
||||
description: 'The files matched by the patterns'
|
||||
runs:
|
||||
using: 'go'
|
||||
main: 'main.go'
|
Reference in New Issue
Block a user