generated from actions/typescript-action
-
Notifications
You must be signed in to change notification settings - Fork 0
/
action.yml
32 lines (29 loc) · 874 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
32
name: 'rust-build.action'
description:
'Packages your rust builds into a .exe, .app and the one for linux.'
author: 'imyanice'
# Add your action's branding here. This will appear on the GitHub Marketplace.
# https://actions-cool.github.io/github-action-branding/
branding:
icon: 'package'
color: 'blue'
# Define your inputs here.
inputs:
targets:
description:
'List of targets the action should create an executable for'
required: true
default: ''
srcDir:
description:
'The folder containing the "target" directory. AKA your source
folder.'
required: false
default: './'
releaseName:
description: 'The name of the release to create'
tagName:
description: 'The tag name of the release to create'
runs:
using: node20
main: dist/index.js