Skip to content

Commit

Permalink
Update homebrew.yaml
Browse files Browse the repository at this point in the history
  • Loading branch information
colstrom authored Jul 3, 2024
1 parent 357ada5 commit 077ad54
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/homebrew.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,6 @@ jobs:
base64: "${{ steps.encode.outputs.base64 }}"
sha256: "${{ steps.checksum.outputs.sha256 }}"
steps:
- name: Install Dependencies
run: |
zypper install --no-confirm git-core
- name: Download Installer
run: |
curl --location --silent --fail --show-error --output /opt/install-homebrew.bash https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh
Expand All @@ -43,6 +40,9 @@ jobs:
run: |
SHA256=$(echo "${{ needs.download.outputs.base64 }}" | base64 -d | sha256sum | cut -d ' ' -f 1)
test "${SHA256}" = "${{ needs.download.outputs.sha256 }}"
- name: Install Dependencies
run: |
zypper install --no-confirm git-core
- name: Install Homebrew
run: |
echo "${{ needs.download.outputs.base64 }}" | base64 -d | bash

0 comments on commit 077ad54

Please sign in to comment.