Skip to content

Commit c5d5d3f

Browse files
authored
homebrew: ignore linux/s390x in manifest when updating homebrew (#167)
homebrew: ignore linux/s390x in manifest Signed-off-by: Ryan Cragun <[email protected]>
1 parent 4bc5121 commit c5d5d3f

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

.github/workflows/update_homebrew_formula.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ jobs:
6363
COMMIT_MSG: "Update Homebrew formula for Enos version v${{ inputs.version }}"
6464
GIT_USER_EMAIL: [email protected]
6565
GIT_USER_NAME: Vault Quality Team
66-
REVIEWER: quality-team
66+
REVIEWER: hashicorp/team-vault-quality
6767
steps:
6868
# Checkout Enos repo and place it in the specified relative path within the runner's main directory,
6969
# in order to accommodate checking out multiple repos.

tools/homebrew/main.go

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -127,6 +127,8 @@ func readMetadata(path string) (*metadata, error) {
127127
metadata.LinuxARM64SHA = tempSha
128128
case "amd64.zip":
129129
metadata.LinuxAMD64SHA = tempSha
130+
case "s390x.zip":
131+
// Ignore our linux/s390x artifact
130132
default:
131133
return metadata, &errInvalidFilename{errInvalidFilenameReasonArch}
132134
}

0 commit comments

Comments
 (0)