Skip to content

Commit dd04271

Browse files
ci(release-workflow): updates release workflow (#49)
This commit updates the release workflow and remove the title field from the input and updates the run-name for the action. skip-ci
1 parent 61d5160 commit dd04271

1 file changed

Lines changed: 3 additions & 4 deletions

File tree

.github/workflows/release.yml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,12 @@
11
name: Release To Maven Central
2-
run-name: Release ${{ github.event.inputs.Version }}
2+
run-name: Publishing Package Version ${{ github.event.inputs.Version }}
33
# Run workflow on commits to the `main` branch
44
on:
55
workflow_dispatch:
66
inputs:
77
Version:
8-
description: "Version to be released in format: x.y.z, where x => major version, y => minor version and z => patch version"
8+
description: "This input field requires version in format: x.y.z, where x => major version, y => minor version and z => patch version"
99
required: true
10-
default: "0.1.0"
1110

1211
jobs:
1312
publish:
@@ -66,5 +65,5 @@ jobs:
6665
uses: ncipollo/release-action@v1
6766
with:
6867
tag: ${{ steps.tag_version.outputs.new_tag }}
69-
name: Version ${{ github.event.inputs.Version }}
68+
name: Release Version ${{ github.event.inputs.Version }}
7069
body: ${{ steps.tag_version.outputs.changelog }}

0 commit comments

Comments
 (0)