File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed
Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -21,9 +21,9 @@ read minor_part <<<$(cut -f2 -d"." <<<"$new_version")
2121read patch_part <<< $( cut -f3 -d" ." <<< " $new_version" )
2222read 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
You can’t perform that action at this time.
0 commit comments