Skip to content
This repository was archived by the owner on May 24, 2025. It is now read-only.

Commit 7cc0c6d

Browse files
committed
Update workflow.yml
1 parent 842bc5b commit 7cc0c6d

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

.github/workflows/workflow.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
3636
- name: Build executable
3737
run: |
38-
pyinstaller --onefile --clean --name "exitlag-auto-signup v3.${{ github.run_number }}" main.py
38+
pyinstaller --onefile --clean --name "exitlag-auto-signup v3.${{ github.run_number }}" main.py --distpath "./"
3939
4040
- name: Create a new tag
4141
run: |
@@ -48,7 +48,8 @@ jobs:
4848
id: create_release
4949
uses: softprops/action-gh-release@v2.0.4
5050
with:
51-
files: "./dist/exitlag-auto-signup v3.${{ github.run_number }}.exe"
51+
files: |
52+
exitlag-auto-signup v3.${{ github.run_number }}.exe
5253
name: "Release v3.${{ github.run_number }}"
53-
body: "Commit: ${{ github.sha }}\nDownload the `exitlag-auto-signup v3.${{ github.run_number }}.exe` file or the source code and you are good to go!"
54+
body: "Commit: ${{ github.sha }}\nDownload the `exitlag-auto-signup v3.${{ github.run_number }}.exe` file or the `source code` and you are good to go!"
5455
tag_name: "v3.${{ github.run_number }}"

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,3 +11,4 @@ test.cpp
1111
build/
1212
dist/
1313
*.spec
14+
*.exe

0 commit comments

Comments
 (0)