File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 7272 files : |
7373 lazystack-*
7474 SHA256SUMS
75+
76+ - name : Parse checksums
77+ id : shas
78+ run : |
79+ echo "darwin_arm64=$(grep darwin-arm64 SHA256SUMS | awk '{print $1}')" >> "$GITHUB_OUTPUT"
80+ echo "darwin_amd64=$(grep darwin-amd64 SHA256SUMS | awk '{print $1}')" >> "$GITHUB_OUTPUT"
81+ echo "linux_arm64=$(grep linux-arm64 SHA256SUMS | awk '{print $1}')" >> "$GITHUB_OUTPUT"
82+ echo "linux_amd64=$(grep linux-amd64 SHA256SUMS | awk '{print $1}')" >> "$GITHUB_OUTPUT"
83+
84+ - name : Update Homebrew tap
85+ uses : peter-evans/repository-dispatch@v3
86+ with :
87+ token : ${{ secrets.HOMEBREW_TAP_TOKEN }}
88+ repository : larkly/homebrew-tap
89+ event-type : update-formula
90+ client-payload : |
91+ {
92+ "version": "${{ env.VERSION }}",
93+ "sha256_darwin_arm64": "${{ steps.shas.outputs.darwin_arm64 }}",
94+ "sha256_darwin_amd64": "${{ steps.shas.outputs.darwin_amd64 }}",
95+ "sha256_linux_arm64": "${{ steps.shas.outputs.linux_arm64 }}",
96+ "sha256_linux_amd64": "${{ steps.shas.outputs.linux_amd64 }}"
97+ }
You can’t perform that action at this time.
0 commit comments