generated from actions/typescript-action
-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathaction.yml
40 lines (40 loc) · 1.13 KB
/
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
33
34
35
36
37
38
39
40
name: 'publish crates'
description: 'Publish Rust crates on crates.io'
author: 'K. <[email protected]>'
branding:
icon: box
color: orange
inputs:
token:
description: 'Github API token'
default: ${{ github.token }}
path:
description: 'Path to Rust crate or workspace'
default: '.'
args:
description: 'Extra arguments for cargo publish'
default: ''
registry-token:
description: 'Cargo registry token'
default: ''
dry-run:
description: 'Skip execution cargo publish'
default: 'false'
check-repo:
description: 'Check repository consistency'
default: 'true'
publish-delay:
description: 'Extra post publish delay (milliseconds)'
default: 0
no-verify:
description: 'Disable cargo publish validation and cyclic dependency checks'
default: 'false'
ignore-unpublished-changes:
description: 'Exit the workflow gracefully if package does not have a new version to publish'
default: 'false'
outputs:
published:
description: 'JSON formatted string with published crates as list of objects with `name` and `version` fields'
runs:
using: 'node20'
main: 'dist/index.js'