We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e7856d7 commit b173b5fCopy full SHA for b173b5f
.github/workflows/publish.yml
@@ -62,14 +62,21 @@ jobs:
62
- name: Install dependencies
63
run: |
64
python -m pip install --upgrade pip
65
- pip install pyinstaller pillow requests torch lxml pyteomics tqdm
+ pip install pyinstaller
66
67
- name: Build Windows EXE with PyInstaller
68
69
- pyinstaller gui.spec --noconfirm
+ pyinstaller ideeplc/gui.spec --noconfirm
70
71
- - name: Upload built EXE
+ - name: Upload EXE to Actions artifact
72
uses: actions/upload-artifact@v4
73
with:
74
name: iDeepLC-windows-exe
75
- path: dist/
+ path: dist/*.exe
76
+
77
+ - name: Upload EXE to GitHub Release page
78
+ uses: softprops/action-gh-release@v1
79
+ with:
80
+ files: dist/*.exe
81
+ env:
82
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
0 commit comments