File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed
Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change 3939 #Prepend patch notes with backticks
4040 sed -i '1s/^/```\n/' patch_notes.txt
4141 - name : Upload
42- uses : actions/upload-artifact@v3
42+ uses : actions/upload-artifact@v4
4343 with :
4444 name : release_info
4545 path : |
@@ -112,9 +112,9 @@ jobs:
112112 run : |
113113 (cd ${{ matrix.build_target }}/ && zip -r ../${{ env.OUTPUT_FILE_NAME }} * )
114114 - name : Upload Build Output
115- uses : actions/upload-artifact@v3
115+ uses : actions/upload-artifact@v4
116116 with :
117- name : build_artifacts
117+ name : build_artifacts-${{ matrix.build_target }}
118118 path : ${{ env.OUTPUT_FILE_NAME }}
119119
120120 create_release :
@@ -125,11 +125,11 @@ jobs:
125125 - name : Checkout
126126 uses : actions/checkout@v4
127127 - name : Download artifacts
128- uses : actions/download-artifact@v3
128+ uses : actions/download-artifact@v4
129129 - name : Create Release
130130 run : |
131131 set -x
132132 new_version_tag="${{ needs.get_release_info.outputs.version }}"
133- gh release create "$new_version_tag" --title "$new_version_tag" --notes-file release_info/patch_notes.txt build_artifacts/*
133+ gh release create "$new_version_tag" --title "$new_version_tag" --notes-file release_info/patch_notes.txt build_artifacts-* /*
134134 env :
135135 GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
You can’t perform that action at this time.
0 commit comments