From 185e1303774912902f007add4d6ca2c521f0ef51 Mon Sep 17 00:00:00 2001 From: Relintai Date: Sat, 12 Aug 2023 11:58:39 +0200 Subject: [PATCH] Server build github action artifact upload fix try #2. --- .github/workflows/http_server_builds.yml | 4 ++-- .github/workflows/server_builds.yml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/http_server_builds.yml b/.github/workflows/http_server_builds.yml index 271183b20..9515fe30b 100644 --- a/.github/workflows/http_server_builds.yml +++ b/.github/workflows/http_server_builds.yml @@ -63,8 +63,8 @@ jobs: - name: Prepare artifact if: ${{ matrix.artifact }} run: | - strip bin/pandemonium.* - chmod +x bin/pandemonium.* + strip bin/pandemonium_server.* + chmod +x bin/pandemonium_server.* - name: Upload artifact uses: ./.github/actions/upload-artifact diff --git a/.github/workflows/server_builds.yml b/.github/workflows/server_builds.yml index 7ec2581a1..0b890ceb0 100644 --- a/.github/workflows/server_builds.yml +++ b/.github/workflows/server_builds.yml @@ -63,8 +63,8 @@ jobs: - name: Prepare artifact if: ${{ matrix.artifact }} run: | - strip bin/pandemonium.* - chmod +x bin/pandemonium.* + strip bin/pandemonium_server.* + chmod +x bin/pandemonium_server.* - name: Upload artifact uses: ./.github/actions/upload-artifact