This repository was archived by the owner on May 24, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 1 file changed +14
-3
lines changed Expand file tree Collapse file tree 1 file changed +14
-3
lines changed Original file line number Diff line number Diff line change @@ -33,10 +33,21 @@ jobs:
33
33
flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics
34
34
flake8 . --count --exit-zero --max-complexity=40 --max-line-length=300 --statistics
35
35
36
- - name : Build executable
37
- run : |
38
- pyinstaller --onefile --clean --name "exitlag-auto-signup v3.${{ github.run_number }}" main.py --distpath "./"
36
+ - name : Create Executable
37
+ uses : sayyid5416/pyinstaller@v1
38
+ with :
39
+ python_ver : ' 3.10'
40
+ spec : ' src/exitlag-auto-signup v3.${{ github.run_number }}.spec'
41
+ requirements : ' src/requirements.txt'
42
+ upload_exe_with_name : ' Exitlag Auto Signup v3.${{ github.run_number }}'
43
+ options : --onefile, --name "exitlag-auto-signup v3.${{ github.run_number }}", --clean
39
44
45
+ - name : Upload Executable
46
+ uses : actions/upload-artifact@v3
47
+ with :
48
+ name : exitlag-auto-signup v3.${{ github.run_number }}
49
+ path : exitlag-auto-signup v3.${{ github.run_number }}.exe
50
+
40
51
- name : Create a new tag
41
52
run : |
42
53
git config --global user.name "github-actions[bot]"
You can’t perform that action at this time.
0 commit comments