Skip to content

Commit 104ccea

Browse files
authored
1 parent a1aac88 commit 104ccea

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

action.sh

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,9 @@ read minor_part <<<$(cut -f2 -d"." <<<"$new_version")
2121
read patch_part <<<$(cut -f3 -d"." <<<"$new_version")
2222
read patch_next_dev <<<$(cut -f3- -d"." <<<"$next_dev_iteration")
2323
# set action outputs
24-
echo "::set-output name=new_version::$new_version"
25-
echo "::set-output name=next_dev_iteration::$next_dev_iteration"
26-
echo "::set-output name=major_part::$major_part"
27-
echo "::set-output name=minor_part::$minor_part"
28-
echo "::set-output name=patch_part::$patch_part"
29-
echo "::set-output name=patch_next_dev::$patch_next_dev"
24+
echo "new_version=$new_version" >> $GITHUB_OUTPUT
25+
echo "next_dev_iteration=$next_dev_iteration" >> $GITHUB_OUTPUT
26+
echo "major_part=$major_part" >> $GITHUB_OUTPUT
27+
echo "minor_part=$minor_part" >> $GITHUB_OUTPUT
28+
echo "patch_part=$patch_part" >> $GITHUB_OUTPUT
29+
echo "patch_next_dev=$patch_next_dev" >> $GITHUB_OUTPUT

0 commit comments

Comments
 (0)