Skip to content

Commit

Permalink
Fix hashing and markdown header
Browse files Browse the repository at this point in the history
  • Loading branch information
theRookieCoder authored May 8, 2022
1 parent 30aa384 commit ce67e05
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -99,10 +99,10 @@ jobs:
name: binaries
path: ./out
- name: Create sha256sum for scoop
run: sha256sum ferium-windows-msvc.zip | cut -d ' ' -f 1 > ./out/ferium-windows-msvc.zip.sha256
run: sha256sum ./out/ferium-windows-msvc.zip | cut -d ' ' -f 1 > ./out/ferium-windows-msvc.zip.sha256
# Remove the dots for the markdown header
- name: MD Header
run: export MD_HEADER=$(echo ${{ github.ref_name }} | sed 's/\.//g')
run: echo "MD_HEADER=$(echo ${{ github.ref_name }} | sed 's/\.//g')" >> $GITHUB_ENV
- name: Create release
uses: softprops/action-gh-release@v1
with:
Expand Down

0 comments on commit ce67e05

Please sign in to comment.