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 2, 2024
1 parent cb0f900 commit 86ba833
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion .github/workflows/homebrew.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
- name: Calculate SHA256
run: |
SHA256="$(sha256sum /opt/install-homebrew.bash | cut -d ' ' -f 1)"
echo "sha256=${SHA256}" >> "${GITHUB_OUTPUT}"
echo "sha256=${SHA256}" | tee -a "${GITHUB_OUTPUT}"
- name: Base64 Encode
run: |
BASE64="$(base64 --wrap=0 /opt/install-homebrew.bash)"
Expand All @@ -37,3 +37,14 @@ jobs:
run: |
INSTALLER="$(perl -p -e 's/%/%25/gs; s/\n/%0A/gs; s/\r/%0B/gs;' /opt/install-homebrew.bash)"
echo "installer=${INSTALLER}" >> "${GITHUB_OUTPUT}"
install:
needs: download
container: registry.suse.com/bci/bci-base:15.6.47.5.5
runs-on: repo-${{ github.repository_id }}-amd64-k8s
env:
HOMEBREW_NO_ANALYTICS: 1
NONINTERACTIVE: 1
steps:
- name: Validate Checksum
run: |
echo "${ jobs.download.outputs.sha256 }"

0 comments on commit 86ba833

Please sign in to comment.