generated from tool3/bump
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathaction.yml
31 lines (31 loc) · 800 Bytes
/
action.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
name: 'ncc action'
description: 'use @vercel/ncc to compile and push your github action dist! 🚀'
author: 'Tal Hayut'
inputs:
github_token:
description: 'github access token'
required: true
src:
description: 'source code dir/file to compile'
required: true
branch:
description: 'the destination branch'
default: 'master'
required: false
commit_msg:
description: 'commit message used when pushing dist'
default: 'action dist 📦'
required: false
ncc_args:
description: 'comma seperated args for ncc'
required: false
allow_unrelated:
description: 'enable allow unrelated history flag for git pull'
default: 'true'
required: false
runs:
using: 'node20'
main: 'dist/index.js'
branding:
icon: 'box'
color: 'green'