Skip to content

Commit

Permalink
Fix arg order
Browse files Browse the repository at this point in the history
  • Loading branch information
pvizeli committed Jun 23, 2023
1 parent 8183258 commit 91f9895
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,8 @@ jobs:
password: ${{ secrets.GITHUB_TOKEN }}

- name: Publish ${{ matrix.architecture }} builder
uses: ./
#uses: ./
uses: home-assistant/[email protected]
with:
args: |
--${{ matrix.architecture }} \
Expand Down
11 changes: 5 additions & 6 deletions builder.sh
Original file line number Diff line number Diff line change
Expand Up @@ -798,12 +798,11 @@ function cosign_sign() {
}

function cosign_verify() {
local image=$1
local issuer=$2
local identity=$3
local image=$4
local platform=$5
local pull=$6
local issuer=$1
local identity=$2
local image=$3
local platform=$4
local pull=$5

local success=false

Expand Down

0 comments on commit 91f9895

Please sign in to comment.