From c7a3cc23d4619881353c54e8bc3dbce276c09398 Mon Sep 17 00:00:00 2001 From: Ben Date: Mon, 5 Feb 2024 23:00:37 +0100 Subject: [PATCH] added workspaces again --- .github/workflows/msbuild.yml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/workflows/msbuild.yml b/.github/workflows/msbuild.yml index 080a1f2..6decab1 100644 --- a/.github/workflows/msbuild.yml +++ b/.github/workflows/msbuild.yml @@ -62,13 +62,13 @@ jobs: echo "${file_name}:\n```${hash_value}```\n" >> "$hash_file" done echo "::set-output name=hash_file::$hash_file" - cat hashes.txt + cat "${GITHUB_WORKSPACE}/hashes.txt" - name: Read Hashes from File id: read_hashes run: | cd "${GITHUB_WORKSPACE}/x64/Release" - hashes=$(cat "hashes.txt") + hashes=$(cat "${GITHUB_WORKSPACE}/hashes.txt") echo "::set-output name=hashes::${hashes}" - name: Create Release @@ -82,6 +82,5 @@ jobs: ${{ steps.read_hashes.outputs.hashes }} files: | x64/Release/* - /RegistryHelper/RegistryHelper.h token: ${{ secrets.GITHUB_TOKEN }} append_body: false