ci. 重命名 Bundle 名称

This commit is contained in:
Liam Sho
2022-05-09 23:49:38 +08:00
parent f994e5cef6
commit 0139745d02
2 changed files with 19 additions and 15 deletions

View File

@@ -38,20 +38,24 @@ jobs:
- name: Run dev build task
run: pwsh .\build.ps1 DevBuild
- name: Upload Artifacts Release
uses: actions/upload-artifact@v3
with:
name: MaaFull-DevBuild-Release
path: ./artifacts/MaaFull-DevBuild-Release*
- name: Read file name
id: read_path
run: pwsh .\read_path.ps1 ./artifacts MaaBundle
- name: Upload Artifacts RelWithDebInfo
- name: Upload Artifacts 0
uses: actions/upload-artifact@v3
with:
name: MaaFull-DevBuild-RelWithDebInfo
path: ./artifacts/MaaFull-DevBuild-RelWithDebInfo*
name: ${{ steps.read_path.outputs.name_0 }}
path: ${{ steps.read_path.outputs.path_0 }}
- name: Upload Artifacts CICD
- name: Upload Artifacts 1
uses: actions/upload-artifact@v3
with:
name: MaaFull-DevBuild-CICD
path: ./artifacts/MaaFull-DevBuild-CICD*
name: ${{ steps.read_path.outputs.name_1 }}
path: ${{ steps.read_path.outputs.path_1 }}
- name: Upload Artifacts 2
uses: actions/upload-artifact@v3
with:
name: ${{ steps.read_path.outputs.name_2 }}
path: ${{ steps.read_path.outputs.path_2 }}