Skip to content

Commit 606b16a

Browse files
committed
Initial
1 parent 1713614 commit 606b16a

File tree

7 files changed

+901
-4
lines changed

7 files changed

+901
-4
lines changed

.gitignore

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -78,10 +78,6 @@ typings/
7878
# Next.js build output
7979
.next
8080

81-
# Nuxt.js build / generate output
82-
.nuxt
83-
dist
84-
8581
# Gatsby files
8682
.cache/
8783
# Comment in the public line in if your project uses Gatsby and *not* Next.js

README.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
# action-build-generate-sha1-hash
2+
3+
GitHub Action to generate sha1 hash
4+
5+
## Building
6+
7+
* Make any changes to the index.js
8+
* Once done, run the following command `node_modules/@zeit/ncc/dist/ncc/cli.js build index.js` and create a tag
9+

action.yml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
name: 'Generate SHA1 Hash for File'
2+
description: 'Generate SHA1 Hash for File'
3+
author: 'd10sfan'
4+
runs:
5+
using: 'node12'
6+
main: 'dist/index.js'
7+
inputs:
8+
file:
9+
description: File path of hash
10+
required: true
11+
outputs:
12+
hash:
13+
description: File hash

0 commit comments

Comments
 (0)