mirror of
https://github.com/byReqz/stocheck.git
synced 2024-11-14 19:53:15 +00:00
13 lines
258 B
YAML
13 lines
258 B
YAML
|
name: gethash
|
||
|
on:
|
||
|
push:
|
||
|
branches: [ main ]
|
||
|
workflow_dispatch:
|
||
|
jobs:
|
||
|
gethash:
|
||
|
runs-on: ubuntu-latest
|
||
|
steps:
|
||
|
- uses: actions/checkout@v2
|
||
|
- name: get hash of script
|
||
|
run: echo $(cat stocheck.sh | md5sum | cut -c -32) > hash
|