Skip to content

Commit

Permalink
god i need to write a linter for actions
Browse files Browse the repository at this point in the history
  • Loading branch information
jmg-duarte committed Nov 25, 2024
1 parent 55fbbe2 commit ce67676
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit ce67676

Please sign in to comment.