Skip to content
Closed
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
4 changes: 2 additions & 2 deletions action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ runs:
EXPORT_AUTH: ${{ inputs.env-auth }}
run: |
echo "::group::Authenticating with Chainguard as ${{ env.IDENTITY }}"
if chainctl auth login --identity "${{ env.IDENTITY }}" -v=${{ env.VERBOSITY }}; then
if chainctl auth login --headless --identity "${{ env.IDENTITY }}" -v=${{ env.VERBOSITY }}; then
echo Logged in as ${{ env.IDENTITY }}!
else
echo "::error Unable to assume the identity ${{ env.IDENTITY }}."
Expand All @@ -158,7 +158,7 @@ runs:
echo "::endgroup::"

echo "::group::Registering docker credential helper"
if ! chainctl auth configure-docker --identity "${{ env.IDENTITY }}" -v=${{ env.VERBOSITY }}; then
if ! chainctl auth configure-docker --headless --identity "${{ env.IDENTITY }}" -v=${{ env.VERBOSITY }}; then
echo "::error Unable to register credential helper as ${{ env.IDENTITY }}."
exit 1
fi
Expand Down