Skip to content

Commit df3f32b

Browse files
ci(release-workflow): updates release workflow (#25)
This commit updates the release workflow, removes the title field from the input, and updates the run-name for the action.
1 parent 91b5af6 commit df3f32b

File tree

1 file changed

+3
-8
lines changed

1 file changed

+3
-8
lines changed

.github/workflows/publish.yml

+3-8
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,11 @@
11
name: Publish Package
2-
2+
run-name: Publishing Package Version ${{ github.event.inputs.Version }}
33
on:
44
workflow_dispatch:
55
inputs:
66
Version:
7-
description: "Version to be released in format: x.y.z, where x => major version, y => minor version and z => patch version"
8-
required: true
9-
default: "0.1.0"
10-
Title:
11-
description: "Title of the release"
7+
description: "This input field requires version in format: x.y.z, where x => major version, y => minor version and z => patch version"
128
required: true
13-
default: "Improving API developer experience"
149

1510
jobs:
1611
publish-package:
@@ -48,5 +43,5 @@ jobs:
4843
uses: ncipollo/release-action@v1
4944
with:
5045
tag: ${{ steps.tag_version.outputs.new_tag }}
51-
name: Release ${{ github.event.inputs.Title }}
46+
name: Release Version ${{ github.event.inputs.Version }}
5247
body: ${{ steps.tag_version.outputs.changelog }}

0 commit comments

Comments
 (0)