From 6ff8a2f11f73b32c596c565ba1699ba198ed2d48 Mon Sep 17 00:00:00 2001 From: Owen-Cochell Date: Thu, 1 Aug 2024 22:43:05 -0400 Subject: [PATCH] fixed output naming --- .github/workflows/ci.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 5a7806f..260ac4d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -14,9 +14,10 @@ jobs: uses: Martin005/pyinstaller-action@v1.2.0 with: spec: server_update.py - options: --onefile, --name "PaperMC-Update" + exe_path: dist + options: --onefile, --name "server_update" - name: Upload Release uses: AButler/upload-release-assets@v3.0 with: - files: ${{ steps.pyinstall.outputs.executable_path }} + files: "dist/server_update.exe" repo-token: ${{ secrets.GITHUB_TOKEN }}