We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d1bd2d7 commit 1881513Copy full SHA for 1881513
.github/workflows/build.yml
@@ -27,10 +27,11 @@ jobs:
27
28
- name: Build executable
29
run: |
30
- poetry run pyinstaller --onefile --name upload_images upload_all_images_in_markdown/main.py # Build the executable
+ poetry run pyinstaller --onefile --name "upload-images" upload_all_images_in_markdown/main.py # Build the executable with hyphen
31
+ dir dist # List the contents of the dist directory for debugging
32
33
- name: Upload artifact
34
uses: actions/upload-artifact@v4 # Upload the generated .exe file
35
with:
- name: upload-images.exe
36
- path: upload_all_images_in_markdowndist/dist/upload-images.exe
+ name: upload-images
37
+ path: dist/upload-images.exe # Path with hyphen
0 commit comments