-
Notifications
You must be signed in to change notification settings - Fork 0
/
action.yml
29 lines (29 loc) · 965 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
name: 'cargo-release'
description: 'Toolkit to help generating releases for BP3D and BPX based projects.'
author: 'Yuri6037'
inputs:
mode:
required: false
description: 'get to get information about the upcoming release, publish to run the publish command across updated crates'
default: get
token:
required: true
description: 'the GitHub Actions token'
cwd:
required: false
description: 'working directory of Cargo.toml'
default: '.'
outputs:
tag:
description: 'release tag string when creating release PR or pre-release'
name:
description: 'release name'
body:
description: 'release body for use to auto-fill the GitHub release in pre-releases'
isnew:
description: 'true if one of the crates in the workspace has a version more recent than the latest on crates.io'
ispre:
description: 'true if one of the crates in the workspace is in pre-release'
runs:
using: 'node20'
main: 'dist/index.js'