add files

This commit is contained in:
Zettat123
2023-03-17 17:08:21 +08:00
parent c2d35db256
commit 74a259b75c
5 changed files with 307 additions and 0 deletions

21
action.yml Normal file
View 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'