Skip to content

Commit

Permalink
MAN-227 - update local docker build file
Browse files Browse the repository at this point in the history
  • Loading branch information
achimber-moj committed Dec 19, 2024
1 parent 8d538b8 commit 113be7b
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/docker_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,8 +49,8 @@ jobs:
steps:
- id: app_version
name: Application version creators
uses: ./.github/actions/build-test-and-deploy/create_app_version@v2 # WORKFLOW_VERSION
- uses: ./.github/actions/build-test-and-deploy/build_docker@v2 # WORKFLOW_VERSION
uses: ./.github/actions/build-test-and-deploy/create_app_version # WORKFLOW_VERSION
- uses: ./.github/actions/build-test-and-deploy/build_docker # WORKFLOW_VERSION
if: ${{ ( inputs.docker_registry == 'ghcr.io' ) && ( ! inputs.docker_multiplatform )}}
with:
repository_name: ${{ github.event.repository.name }}
Expand All @@ -60,7 +60,7 @@ jobs:
push: ${{ inputs.push }}
app_version: ${{ steps.app_version.outputs.version }}

- uses: ./.github/actions/build-test-and-deploy/build_docker@v2 # WORKFLOW_VERSION
- uses: ./.github/actions/build-test-and-deploy/build_docker # WORKFLOW_VERSION
if: ${{ ( inputs.docker_registry == 'quay.io' ) && ( ! inputs.docker_multiplatform )}}
with:
repository_name: ${{ github.event.repository.name }}
Expand All @@ -74,7 +74,7 @@ jobs:
# git_head_ref: ${{ github.head_ref }}
# git_branch_ref: ${{ github.ref_name }}

- uses: ./.github/actions/build-test-and-deploy/build_multiplatform_docker@v2 # WORKFLOW_VERSION
- uses: ./.github/actions/build-test-and-deploy/build_multiplatform_docker # WORKFLOW_VERSION
if: ${{ ( inputs.docker_registry == 'ghcr.io' ) && ( inputs.docker_multiplatform )}}
with:
repository_name: ${{ github.event.repository.name }}
Expand All @@ -84,7 +84,7 @@ jobs:
push: ${{ inputs.push }}
app_version: ${{ steps.app_version.outputs.version }}

- uses: ./.github/actions/build-test-and-deploy/build_multiplatform_docker@v2 # WORKFLOW_VERSION
- uses: ./.github/actions/build-test-and-deploy/build_multiplatform_docker # WORKFLOW_VERSION
if: ${{ ( inputs.docker_registry == 'quay.io' ) && ( inputs.docker_multiplatform )}}
with:
repository_name: ${{ github.event.repository.name }}
Expand Down

0 comments on commit 113be7b

Please sign in to comment.