chore:修复工作流语法错误
Signed-off-by: doudou0720 <98651603+doudou0720@users.noreply.github.com>
This commit is contained in:
@@ -70,14 +70,14 @@ jobs:
|
|||||||
echo "archive_name=$version" >> $env:GITHUB_OUTPUT
|
echo "archive_name=$version" >> $env:GITHUB_OUTPUT
|
||||||
|
|
||||||
- name: Upload Artifact(AnyCPU) (if build succeeded)
|
- name: Upload Artifact(AnyCPU) (if build succeeded)
|
||||||
if: steps.check-exe.outputs.build_success == 'true' and matrix.architecture == 'AnyCPU'
|
if: steps.check-exe.outputs.build_success == 'true' && matrix.architecture == 'AnyCPU'
|
||||||
uses: actions/upload-artifact@v7
|
uses: actions/upload-artifact@v7
|
||||||
with:
|
with:
|
||||||
name: InkCanvasForClass.CE.debug
|
name: InkCanvasForClass.CE.debug
|
||||||
path: "Ink Canvas/bin/Debug/net472/*"
|
path: "Ink Canvas/bin/Debug/net472/*"
|
||||||
|
|
||||||
- name: Upload Artifact(x86) (if build succeeded)
|
- name: Upload Artifact(x86) (if build succeeded)
|
||||||
if: steps.check-exe.outputs.build_success == 'true' and matrix.architecture == 'x86'
|
if: steps.check-exe.outputs.build_success == 'true' && matrix.architecture == 'x86'
|
||||||
uses: actions/upload-artifact@v7
|
uses: actions/upload-artifact@v7
|
||||||
with:
|
with:
|
||||||
name: InkCanvasForClass.CE.debug.x86
|
name: InkCanvasForClass.CE.debug.x86
|
||||||
|
|||||||
@@ -67,14 +67,14 @@ jobs:
|
|||||||
echo "archive_name=$version" >> $env:GITHUB_OUTPUT
|
echo "archive_name=$version" >> $env:GITHUB_OUTPUT
|
||||||
|
|
||||||
- name: Upload Artifact(AnyCPU) (if build succeeded)
|
- name: Upload Artifact(AnyCPU) (if build succeeded)
|
||||||
if: steps.check-exe.outputs.build_success == 'true' and matrix.architecture == 'AnyCPU'
|
if: steps.check-exe.outputs.build_success == 'true' && matrix.architecture == 'AnyCPU'
|
||||||
uses: actions/upload-artifact@v7
|
uses: actions/upload-artifact@v7
|
||||||
with:
|
with:
|
||||||
name: InkCanvasForClass.CE.debug
|
name: InkCanvasForClass.CE.debug
|
||||||
path: "Ink Canvas/bin/Debug/net472/*"
|
path: "Ink Canvas/bin/Debug/net472/*"
|
||||||
|
|
||||||
- name: Upload Artifact(x86) (if build succeeded)
|
- name: Upload Artifact(x86) (if build succeeded)
|
||||||
if: steps.check-exe.outputs.build_success == 'true' and matrix.architecture == 'x86'
|
if: steps.check-exe.outputs.build_success == 'true' && matrix.architecture == 'x86'
|
||||||
uses: actions/upload-artifact@v7
|
uses: actions/upload-artifact@v7
|
||||||
with:
|
with:
|
||||||
name: InkCanvasForClass.CE.debug.x86
|
name: InkCanvasForClass.CE.debug.x86
|
||||||
|
|||||||
Reference in New Issue
Block a user