You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Zettat123 74a259b75c add files 2 years ago
README.md add files 2 years ago
action.yml add files 2 years ago
go.mod add files 2 years ago
go.sum add files 2 years ago
main.go add files 2 years ago

README.md

go-hashfiles

This action is to compute the SHA256 hash of specified files.

NOTE: This action is written in Go. Please make sure the runs-on runner supports running Go actions.

Usage

- uses: actions/go-hashfiles@v0.0.1
  with:
    # The working dir for the action.
    # Default: ${{ github.workspace }}
    workdir: ''

    # The patterns used to match files.
    # Multiple patterns should be seperated by `\n`
    patterns: ''

Output

Output Item Description
hash The computed hash result
matched-files The files matched by the patterns

Example

- uses: actions/go-hashfiles@v0.0.1
  id: get-hash
  with: 
    patterns: |-
      go.sum
      ./admin/*
      **/package-lock.json      
- name: Echo hash
  run: echo ${{ steps.get-hash.outputs.hash }}