Skip to content

Commit

Permalink
fix: ensure inputs with defaults are not required
Browse files Browse the repository at this point in the history
  • Loading branch information
dnlopes committed Sep 26, 2024
1 parent 09d6b5f commit 95c3ecd
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/docker-build-push.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,12 @@ on:
required: true
type: string
awsRoleArn:
required: true
required: false
description: the IAM role ARN to be assumed when interacting with AWS ECR
type: string
default: "arn:aws:iam::726291298705:role/GitHub"
awsRegion:
required: true
required: false
description: the AWS region to use
type: string
default: eu-west-1
Expand All @@ -23,7 +23,7 @@ on:
type: string
description: name of the image tag
pushToECR:
required: true
required: false
type: boolean
default: false

Expand Down

0 comments on commit 95c3ecd

Please sign in to comment.