This action Get a gile as input and prepare its sha256sum.txt file.
Required The file's working directory that will be hashed.
Required The filenamein your repo to be hashed.
The extension of sha256sum file. You can customize to sha256sum.txt
, sha256.txt
or anything you want
The path of hashed file.
on:
pull_request:
branches:
- main
jobs:
sha256sum-action:
runs-on: ubuntu-latest
name: Test sha256sum-action
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Sha256Sum Action
uses: qlrd/[email protected]
id: hashing
with:
working-directory: ./test-data
file: test.txt
ext: 'sha256sum.txt'
- name: Verify Hash
run: cat ${{ steps.hashing.outputs.hash-file }}