diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 886bef4..27ec71e 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -29,6 +29,10 @@ jobs: run: | python -m PyInstaller epson_print_conf.spec -- --default + - name: Zip EXE + run: | + powershell -Command Compress-Archive dist/epson_print_conf.exe dist/epson_print_conf.zip + - name: Generate Changelog run: echo "The executable file in the assets below is auto-generated by a GitHub Action." > ${{ github.workspace }}-CHANGELOG.txt @@ -37,6 +41,6 @@ jobs: if: startsWith(github.ref, 'refs/tags/') with: body_path: ${{ github.workspace }}-CHANGELOG.txt - files: dist/epson_print_conf.exe + files: dist/epson_print_conf.zip append_body: true generate_release_notes: true