Skip to content

Latest commit

 

History

History

generate-checksum

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 

Generate Checksum action

Generates a 512-bit sha hash for each file downloaded from artifacts.

Documentation

Inputs

Input Description Required Default
hashfile_name The name of the generated checksum file false "CHECKSUMS.txt"
artifact_download_pattern The pattern of artifacts to download. Defaults to '*' (all artifacts) false "*"

Usage

name: Action
on: push
jobs:
  build:
    name: Job
    runs-on: ubuntu-latest
    steps:
      - name: Generate Checksum
        id: generate_checksum
        uses: stacks-network/actions/generate-checksum@main
        with:
          hashfile_name: "hashes.txt"
          artifact_download_pattern: "binary-build-*"