File tree Expand file tree Collapse file tree 2 files changed +8
-4
lines changed
Expand file tree Collapse file tree 2 files changed +8
-4
lines changed Original file line number Diff line number Diff line change 6262 if : github.ref_type == 'tag'
6363 uses : softprops/action-gh-release@da05d552573ad5aba039eaac05058a918a7bf631 # 2.2.2
6464 with :
65- release_name : v${{ steps.bundle.outputs.version }}
66- files : ${{ join(fromJson( steps.bundle.outputs.artifacts), '\n') }}
65+ name : v${{ steps.bundle.outputs.version }}
66+ files : ${{ steps.bundle.outputs.artifacts }}
Original file line number Diff line number Diff line change @@ -82,8 +82,12 @@ Future<void> main(List<String> args) async {
8282
8383 if (platform.environment['GITHUB_OUTPUT' ] case final ciOutput? ) {
8484 fileSystem.file (ciOutput).writeAsStringSync (
85- 'version=$version \n '
86- 'artifacts=${jsonEncode (artifacts )}\n ' ,
85+ [
86+ 'version=$version ' ,
87+ 'artifacts<<EOF' ,
88+ ...artifacts,
89+ 'EOF' ,
90+ ].join ('\n ' ),
8791 mode: FileMode .append,
8892 flush: true ,
8993 );
You can’t perform that action at this time.
0 commit comments