Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ci: add macos builds #586

Closed
wants to merge 19 commits into from
Prev Previous commit
Next Next commit
god i need to write a linter for actions
  • Loading branch information
jmg-duarte committed Nov 25, 2024

Unverified

This commit is not signed, but one or more authors requires that any commit attributed to them is signed.
commit ce67676f0ec0a8c6602f410206b6ea7b7c774a25
6 changes: 3 additions & 3 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
@@ -155,9 +155,9 @@ jobs:
id: calculate-sha256
run: |
cd ${{ steps.download-artifacts.outputs.download-path }}
echo "LINUX_X64_SHA256=$(sha256sum mater-cli-linux-x64) | sed 's/\(.*\) .*/\1/')" >> "$GITHUB_OUTPUT"
echo "MACOS_X64_SHA256=$(sha256sum mater-cli-macos-x64) | sed 's/\(.*\) .*/\1/')" >> "$GITHUB_OUTPUT"
echo "MACOS_ARM64_SHA256=$(sha256sum mater-cli-macos-arm64) | sed 's/\(.*\) .*/\1/')" >> "$GITHUB_OUTPUT"
echo "LINUX_X64_SHA256=$(sha256sum mater-cli-linux-x64 | sed 's/\(.*\) .*/\1/')" >> "$GITHUB_OUTPUT"
echo "MACOS_X64_SHA256=$(sha256sum mater-cli-macos-x64 | sed 's/\(.*\) .*/\1/')" >> "$GITHUB_OUTPUT"
echo "MACOS_ARM64_SHA256=$(sha256sum mater-cli-macos-arm64 | sed 's/\(.*\) .*/\1/')" >> "$GITHUB_OUTPUT"

- name: Perform release
uses: softprops/action-gh-release@v2