Skip to content

Commit 874be78

Browse files
committed
Updating GitHub Actions workflow to address deprecation annotation and for direct exe download
1 parent 013a43d commit 874be78

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

.github/workflows/build-executable.yml

+3-2
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ on:
44
push:
55
branches:
66
- main
7-
workflow_dispatch: # Allow manual triggering
7+
workflow_dispatch:
88

99
jobs:
1010
build:
@@ -28,7 +28,8 @@ jobs:
2828
pyinstaller --onefile --noconsole --icon=file_renamer_icon.ico --add-data "file_renamer_icon.ico;." rename_files.py
2929
3030
- name: Upload artifact
31-
uses: actions/upload-artifact@v3
31+
uses: actions/upload-artifact@v4
3232
with:
3333
name: rename_files_executable
3434
path: dist/rename_files.exe
35+
retention-days: 7

0 commit comments

Comments
 (0)