Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Adding build args support to CTF build image #659

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
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: 4 additions & 0 deletions actions/ctf-build-image/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,9 @@ inputs:
description:
The full docker tag to use for the push to ecr, does not push anything if
tag is empty
build_args:
required: false
description: Additional build arguments for the image
dep_solana_sha:
required: false
description: chainlink-solana commit or branch
Expand Down Expand Up @@ -183,6 +186,7 @@ runs:
COMMIT_SHA=${{ github.sha }}
CHAINLINK_USER=chainlink
GO_COVER_FLAG=${{ inputs.GO_COVER_FLAG }}
${{ inputs.build_args }}
tags: ${{ inputs.push_tag }}
push: ${{ steps.push.outputs.push }}
secrets: ${{ inputs.docker_secrets }}
Expand Down
Loading