Skip to content

Commit

Permalink
replace removed --debug flag with --log-level
Browse files Browse the repository at this point in the history
Signed-off-by: Craig O'Donnell <craig@replicated.com>
  • Loading branch information
Craig O'Donnell committed Jan 16, 2024
1 parent 44e0af7 commit afcbc86
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion apko-build/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ runs:
fi
/usr/bin/apko build \
--vcs=${{ inputs.vcs-url }} \
${{ inputs.debug && '--debug' }} \
${{ inputs.debug && '--log-level debug' }} \
${{ inputs.config }} ${{ inputs.tag }} output.tar $keys $repos $packages $archs $build_options
echo EXIT CODE: $?
EOF
Expand Down
2 changes: 1 addition & 1 deletion apko-publish/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,7 @@ runs:
export DIGEST_FILE=$(mktemp)
/usr/bin/apko publish \
--vcs=${{ inputs.vcs-url }} \
'--debug' \
${{ inputs.debug && '--log-level debug' }} \
--image-refs="${{ inputs.image_refs }}" ${{ inputs.config }} ${{ inputs.tag }} $keys $repos $packages $archs $build_options $sbomPath | tee ${DIGEST_FILE}
echo EXIT CODE: $?
echo ::set-output name=digest::$(cat ${DIGEST_FILE})
Expand Down

0 comments on commit afcbc86

Please sign in to comment.