We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e7bdb22 commit 1f47350Copy full SHA for 1f47350
.github/workflows/python-package-conda.yml
@@ -1,6 +1,9 @@
1
name: Create Windows Executable using Conda
2
3
-on: [push]
+on:
4
+ push:
5
+ tags:
6
+ - '*'
7
8
jobs:
9
build-windows:
@@ -19,6 +22,5 @@ jobs:
19
22
- name: Build Executable
20
23
run: |
21
24
C:\Miniconda\condabin\conda.bat activate build
- C:\Miniconda\condabin\conda.bat list
- pip list
25
+ C:\Miniconda\condabin\conda.bat env export
26
pyinstaller --add-data="funscript_editor/config/*;funscript_editor/config" --hidden-import "pynput.keyboard._win32" --hidden-import "pynput.mouse._win32" funscript-editor.py
0 commit comments