-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathaction.yml
39 lines (32 loc) · 940 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
33
34
35
36
37
38
39
---
name: Python Semantic Release - Publish
description: Publish Artifacts & Assets to GitHub Releases
branding:
icon: upload
color: orange
inputs:
directory:
description: |
Sub-directory to change into before running semantic-release publish
default: "."
required: false
github_token:
description: |
GitHub token used to upload artifacts. Requires permission to create and
edit releases.
required: true
root_options:
description: |
Additional options for the root `semantic-release` command.
Example: -vv --noop
required: false
default: "-v"
tag:
description: |
The tag corresponding to the GitHub Release that the artifacts should
be published to. Defaults to 'latest', in which case the latest tag
will be identified by Python Semantic Release and used to publish to.
required: false
runs:
using: docker
image: src/Dockerfile