From c6f78c5522af38aa30194681ea1accf28812b6bb Mon Sep 17 00:00:00 2001 From: Lion Kortlepel Date: Sat, 9 Dec 2023 20:06:50 +0100 Subject: [PATCH] fix release build path --- .github/workflows/release.yml | 2 +- .github/workflows/windows.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index aa8ab5f..47b7100 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -164,6 +164,6 @@ jobs: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} with: upload_url: ${{ needs.create-release.outputs.upload_url }} - asset_path: ./bin/BeamMP-Server.exe + asset_path: ./bin/Release/BeamMP-Server.exe asset_name: BeamMP-Server.exe asset_content_type: application/vnd.microsoft.portable-executable diff --git a/.github/workflows/windows.yml b/.github/workflows/windows.yml index bdb54b6..f33ed92 100644 --- a/.github/workflows/windows.yml +++ b/.github/workflows/windows.yml @@ -39,5 +39,5 @@ jobs: uses: actions/upload-artifact@v2 with: name: BeamMP-Server-windows - path: ./bin/BeamMP-Server.exe + path: ./bin/Release/BeamMP-Server.exe