Skip to content

Commit

Permalink
skip aws setup for dry run
Browse files Browse the repository at this point in the history
  • Loading branch information
jackietung-redpanda committed Aug 30, 2024
1 parent ccbd1b7 commit 9da8d13
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/actions/upload_managed_plugin/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ name: upload-managed-plugin
description: Upload binaries as rpk managed plugin
inputs:
aws_access_key_id:
required: true
default: UNSET
aws_secret_access_key:
required: true
default: UNSET
aws_region:
required: true
aws_s3_bucket:
Expand All @@ -31,6 +31,7 @@ runs:
steps:
- name: Configure AWS Credentials
uses: aws-actions/configure-aws-credentials@v4
if: ${{ ! inputs.dry_run }}
with:
aws-access-key-id: ${{ inputs.aws_access_key_id }}
aws-secret-access-key: ${{ inputs.aws_secret_access_key }}
Expand Down

0 comments on commit 9da8d13

Please sign in to comment.