File tree Expand file tree Collapse file tree 1 file changed +9
-3
lines changed Expand file tree Collapse file tree 1 file changed +9
-3
lines changed Original file line number Diff line number Diff line change @@ -71,13 +71,19 @@ jobs:
71
71
user : ${{ secrets.ANACONDA_USER_NAME }}
72
72
token : ${{ secrets.ANACONDA_TOKEN }}
73
73
label : main
74
- platform_all : true
75
-
74
+
75
+ - name : Re-format output paths
76
+ id : reformat-paths
77
+ # Needed to have the correct newline-separated files format for the following release step
78
+ run : |
79
+ paths=$(tr ' ' '\n' <<< "${{steps.build-and-upload.outputs.paths}}")
80
+ echo "newline-separated-paths=$paths" >> $GITHUB_OUTPUT
81
+
76
82
- name : Create Release
77
83
uses : softprops/action-gh-release@c062e08bd532815e2082a85e87e3ef29c3e6d191 # v2.0.8
78
84
with :
79
85
tag_name : ${{ github.ref_name }}
80
86
name : ${{needs.get-package-name.outputs.package-name}} ${{ github.ref_name }}
81
87
generate_release_notes : true
82
88
fail_on_unmatched_files : true
83
- files : ${{steps.build-and-upload .outputs.paths}}
89
+ files : ${{steps.reformat-paths .outputs.newline-separated- paths}}
You can’t perform that action at this time.
0 commit comments