Skip to content

Commit

Permalink
Fix variable{1} on build pipeline (home-assistant#49750)
Browse files Browse the repository at this point in the history
  • Loading branch information
pvizeli authored Apr 27, 2021
1 parent b28a868 commit d2c989e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/builder.yml
Original file line number Diff line number Diff line change
Expand Up @@ -237,7 +237,7 @@ jobs:
export DOCKER_CLI_EXPERIMENTAL=enabled
function create_manifest() {
local docker_reg={1}
local docker_reg=${1}
local tag_l=${2}
local tag_r=${3}
Expand Down Expand Up @@ -272,7 +272,7 @@ jobs:
}
function validate_image() {
local image={1}
local image=${1}
state="$(vcn authenticate --org home-assistant.io --output json docker://${image} | jq '.verification.status // 2')"
if [[ "${state}" != "0" ]]; then
echo "Invalid signature!"
Expand Down

0 comments on commit d2c989e

Please sign in to comment.