Skip to content

Commit

Permalink
fix: missing dep macos release (#4343)
Browse files Browse the repository at this point in the history
  • Loading branch information
LesnyRumcajs committed May 19, 2024
1 parent 76a5dec commit e3de31f
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,9 @@ jobs:
mkdir -p forest-${{ github.ref_name }}
cp -v target/release/forest target/release/forest-cli target/release/forest-tool forest-${{ github.ref_name }}
cp -rv CHANGELOG.md LICENSE-APACHE LICENSE-MIT README.md documentation forest-${{ github.ref_name }}
# If `sha256sum` is not defined, then we're likely running MacOS. Use an alias.
# An alternative is to install `coreutils`.
type sha256sum >/dev/null 2>&1 || alias sha256sum='shasum -a 256'
sha256sum forest-${{ github.ref_name }}/forest > forest-${{ github.ref_name }}/forest.sha256
sha256sum forest-${{ github.ref_name }}/forest-cli > forest-${{ github.ref_name }}/forest-cli.sha256
sha256sum forest-${{ github.ref_name }}/forest-tool > forest-${{ github.ref_name }}/forest-tool.sha256
Expand Down

0 comments on commit e3de31f

Please sign in to comment.