We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 30aa384 commit ce67e05Copy full SHA for ce67e05
.github/workflows/release.yml
@@ -99,10 +99,10 @@ jobs:
99
name: binaries
100
path: ./out
101
- name: Create sha256sum for scoop
102
- 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
103
# Remove the dots for the markdown header
104
- name: MD Header
105
- run: export MD_HEADER=$(echo ${{ github.ref_name }} | sed 's/\.//g')
+ run: echo "MD_HEADER=$(echo ${{ github.ref_name }} | sed 's/\.//g')" >> $GITHUB_ENV
106
- name: Create release
107
uses: softprops/action-gh-release@v1
108
with:
0 commit comments