From 6e9be2ec99ca62ab7cb879234c686eb38d69d680 Mon Sep 17 00:00:00 2001 From: "Keidan (K. Billonneau)" Date: Sun, 6 Mar 2022 12:41:49 +0100 Subject: [PATCH] Fix build name + the path to the release doesn't seem to be valid (the binary is in release...). --- .github/workflows/windows.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/windows.yml b/.github/workflows/windows.yml index abbfc07..3de42be 100644 --- a/.github/workflows/windows.yml +++ b/.github/workflows/windows.yml @@ -1,6 +1,6 @@ # This is a basic workflow to help you get started with Actions -name: Build +name: Windows # Controls when the workflow will run on: @@ -52,4 +52,4 @@ jobs: - name: Run test shell: bash run: | - python test.py --file bin/Release/hex2bin.exe + python test.py --file bin/Debug/hex2bin.exe