File tree 1 file changed +12
-2
lines changed
1 file changed +12
-2
lines changed Original file line number Diff line number Diff line change @@ -755,6 +755,16 @@ else
755
755
file_type=" alpha"
756
756
fi
757
757
758
+ # Add some GitHub Actions outputs
759
+ if [[ -n $GITHUB_ACTIONS ]]; then
760
+ # shellcheck disable=SC2129
761
+ echo " project_version=${project_version} " >> " $GITHUB_OUTPUT "
762
+ echo " previous_version=${previous_version} " >> " $GITHUB_OUTPUT "
763
+ echo " project_hash=${project_hash} " >> " $GITHUB_OUTPUT "
764
+ echo " project_timestamp=${project_timestamp} " >> " $GITHUB_OUTPUT "
765
+ echo " release_type=${file_type} " >> " $GITHUB_OUTPUT "
766
+ fi
767
+
758
768
# Bare carriage-return character.
759
769
carriage_return=$( printf " \r" )
760
770
@@ -2485,8 +2495,8 @@ if [ -z "$skip_zipfile" ]; then
2485
2495
nolib_archive=
2486
2496
fi
2487
2497
2488
- if [ -n " $GITHUB_ACTIONS " ]; then
2489
- echo " ARCHIVE_PATH =${archive} " >> " $GITHUB_OUTPUT "
2498
+ if [[ -n $GITHUB_ACTIONS ] ]; then
2499
+ echo " archive_path =${archive} " >> " $GITHUB_OUTPUT "
2490
2500
fi
2491
2501
2492
2502
start_group " Creating archive: $archive_name ($archive_label )" " archive"
You can’t perform that action at this time.
0 commit comments