From 75bfe6555b88936cf58ea23d044e8c7e70d5e083 Mon Sep 17 00:00:00 2001 From: Codinablack Date: Wed, 25 Dec 2024 09:04:15 -0600 Subject: [PATCH] Removed "with" causing workflow error --- .github/workflows/windows_build_runner.yml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/workflows/windows_build_runner.yml b/.github/workflows/windows_build_runner.yml index fdf31052..90f629e0 100644 --- a/.github/workflows/windows_build_runner.yml +++ b/.github/workflows/windows_build_runner.yml @@ -79,9 +79,8 @@ jobs: path: D:/a/BlackTek-Server/BlackTek-Server/build - name: Prepare Compressed Assets - with: - run: | - zip -r BlackTek-Server.zip D:/a/BlackTek-Server/BlackTek-Server/ + run: | + zip -r BlackTek-Server.zip D:/a/BlackTek-Server/BlackTek-Server/ - name: Upload Assets for Edge Build if: github.event_name == 'push' && !startsWith(github.ref, 'refs/tags/') || (github.event_name == 'pull_request' && github.event.pull_request.merged == true)