Skip to content

Commit a5b66f4

Browse files
committed
Enhance artifact upload paths in release pipeline
Added a new path for uploading artifacts in `release-pipeline.yml` that incorporates the `matrix.runtime` variable. This change allows for more specific artifact uploads based on the runtime environment, improving the flexibility of the artifact management process during the release pipeline.
1 parent fe5a101 commit a5b66f4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/release-pipline.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ jobs:
109109
FILE_NAME: g4-bot-monitor-${{ matrix.platform }}-${{ env.BUILD_VERSION }}${{ matrix.ext }}
110110
with:
111111
name: g4-bot-monitor-${{ matrix.platform }}
112-
path: ${{ github.workspace }}/artifact_publish/${{ env.FILE_NAME }}
112+
path: ${{ github.workspace }}/artifact_publish/${{ matrix.runtime }}/${{ env.FILE_NAME }}
113113

114114
new-release:
115115
name: New GitHub Release Version v${{ needs.new-version.outputs.buildVersion }}

0 commit comments

Comments
 (0)