Skip to content

Commit

Permalink
Merge branch 'staging'
Browse files Browse the repository at this point in the history
# Conflicts:
#	package.json
  • Loading branch information
sschiessl-bcp committed Feb 23, 2023
2 parents 6a06807 + bc5d8c8 commit 363e727
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/build-release-binaries.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,12 +37,14 @@ jobs:
run: ./node_modules/.bin/electron-builder -p never --linux deb
- name: Build exe
run: ./node_modules/.bin/electron-builder -p never --windows
- name: Install coreutils for macOS hash
run: brew install coreutils
- name: Calc hash
id: calc_hash
run: |
echo "::set-output name=dmghash::$(sha256sum build/binaries/*.dmg|cut -c-64)"
echo "::set-output name=debhash::$(sha256sum build/binaries/*.deb|cut -c-64)"
echo "::set-output name=exehash::$(sha256sum build/binaries/*.exe|cut -c-64)"
echo "dmghash=$(sha256sum build/binaries/*.dmg|cut -c-64)" >> $GITHUB_OUTPUT
echo "debhash=$(sha256sum build/binaries/*.deb|cut -c-64)" >> $GITHUB_OUTPUT
echo "exehash=$(sha256sum build/binaries/*.exe|cut -c-64)" >> $GITHUB_OUTPUT
- name: Create Body
id: create_body
uses: bitshares/generate_release_notes@v1
Expand Down

0 comments on commit 363e727

Please sign in to comment.