Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 7 additions & 4 deletions action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ inputs:
Determines if we export HTTP_AUTH env variable with chainctl auth
token.
required: false
default: false
default: "false"

identity:
description: |
Expand Down Expand Up @@ -49,7 +49,7 @@ inputs:
Set the logging verbosity for chainctl. A value of 0 disables
logging output. Valid values are 1-5, increasing in verbosity.
required: false
default: 0
default: "0"

config-path:
description: |
Expand All @@ -62,7 +62,7 @@ inputs:
description: |
Whether to retry on errors downloading the chainctl binary.
required: false
default: true
default: "true"

apk-host:
description: |
Expand All @@ -81,7 +81,7 @@ inputs:
description: |
Whether to install the Chainguard Libraries pip keyring package.
required: false
default: false
default: "false"

runs:
using: "composite"
Expand Down Expand Up @@ -124,6 +124,9 @@ runs:
chmod +x ./${out}
echo "$(pwd)" >> $GITHUB_PATH

# Print the version of chainctl installed
./${out} version

- name: Authenticate with Chainguard (assumed identity)
shell: bash
if: ${{ inputs.identity != '' }}
Expand Down