We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e5c8f4c commit 0b2dec0Copy full SHA for 0b2dec0
.github/workflows/pdf-tools-app.yml
@@ -33,10 +33,17 @@ jobs:
33
run: |
34
cd pdf_tools
35
python build_exe.py
36
+ - name: Verify EXE file exists
37
+ shell: pwsh
38
+ run: |
39
+ if (!(Test-Path -Path "pdf_tools/dist/PDF工具_v0.0.1.21.exe")) {
40
+ Write-Host "Error: File not found!"
41
+ exit 1
42
+ }
43
- name: Upload EXE as Artifact
44
uses: actions/upload-artifact@v3
45
with:
- name: my-tool-exe
46
+ name: PDF工具_v0.0.1.21.exe
47
path: pdf_tools/dist/PDF工具_v0.0.1.21.exe # 修改为生成的 EXE 文件路径
48
49
- name: Create Release
0 commit comments