Skip to content

Commit ce67e05

Browse files
Fix hashing and markdown header
1 parent 30aa384 commit ce67e05

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -99,10 +99,10 @@ jobs:
9999
name: binaries
100100
path: ./out
101101
- name: Create sha256sum for scoop
102-
run: sha256sum ferium-windows-msvc.zip | cut -d ' ' -f 1 > ./out/ferium-windows-msvc.zip.sha256
102+
run: sha256sum ./out/ferium-windows-msvc.zip | cut -d ' ' -f 1 > ./out/ferium-windows-msvc.zip.sha256
103103
# Remove the dots for the markdown header
104104
- name: MD Header
105-
run: export MD_HEADER=$(echo ${{ github.ref_name }} | sed 's/\.//g')
105+
run: echo "MD_HEADER=$(echo ${{ github.ref_name }} | sed 's/\.//g')" >> $GITHUB_ENV
106106
- name: Create release
107107
uses: softprops/action-gh-release@v1
108108
with:

0 commit comments

Comments
 (0)