Skip to content
This repository has been archived by the owner on Dec 2, 2024. It is now read-only.

Commit

Permalink
added workspaces again
Browse files Browse the repository at this point in the history
  • Loading branch information
Arteiii committed Feb 5, 2024
1 parent 29ab031 commit c7a3cc2
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions .github/workflows/msbuild.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -82,6 +82,5 @@ jobs:
${{ steps.read_hashes.outputs.hashes }}
files: |
x64/Release/*
/RegistryHelper/RegistryHelper.h
token: ${{ secrets.GITHUB_TOKEN }}
append_body: false

0 comments on commit c7a3cc2

Please sign in to comment.