Skip to content

Commit

Permalink
Merge pull request #145 from ethpandaops/fix/schedule-build-default-d…
Browse files Browse the repository at this point in the history
…ockerfile

fix(ci): update schedule default built dockerfile
  • Loading branch information
Savid authored Mar 22, 2024
2 parents 7202927 + 2a71df3 commit 65912ae
Showing 1 changed file with 7 additions and 6 deletions.
13 changes: 7 additions & 6 deletions .github/actions/deploy/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -81,13 +81,14 @@ runs:
- name: Build script
shell: bash
if: inputs.build_script
env:
source_repository: ${{ inputs.source_repository }}
source_ref: ${{ inputs.source_ref }}
target_tag: ${{ inputs.target_tag }}
target_repository: ${{ inputs.target_repository }}
target_dockerfile: ${{ inputs.target_dockerfile || './source/Dockerfile' }}
source_git_commit_hash: ${{ steps.git_commit_hash.outputs.git_commit_hash }}
run: |
source_repository=${{ inputs.source_repository }} \
source_ref=${{ inputs.source_ref }} \
target_tag=${{ inputs.target_tag }} \
target_repository=${{ inputs.target_repository }} \
target_dockerfile=${{ inputs.target_dockerfile }} \
source_git_commit_hash=${{ steps.git_commit_hash.outputs.git_commit_hash }} \
${{ inputs.build_script }}
- name: Image digest & tags (build script)
shell: bash
Expand Down

0 comments on commit 65912ae

Please sign in to comment.