Skip to content

Commit

Permalink
ci: Fix building images
Browse files Browse the repository at this point in the history
  • Loading branch information
geokrety-bot authored and kumy committed Aug 12, 2023
1 parent c5fe77d commit 11682cd
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions .github/actions/docker-build/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ inputs:
runs:
using: "composite"
steps:
- name: base image
- name: base
uses: geokrety/geokrety-gha-workflows/.github/actions/docker-build@main
id: docker-base
with:
Expand All @@ -23,16 +23,18 @@ runs:
uses: geokrety/geokrety-gha-workflows/.github/actions/docker-build@main
id: docker-uploader
with:
image_name: geokrety/pictures-processor-base
image_name: geokrety/pictures-processor-uploader
dockerhub_username: "${{ inputs.dockerhub_username }}"
dockerhub_token: "${{ inputs.dockerhub_token }}"
dockerfile: Dockerfile.uploader
build_args: BASE_TAG=${{ steps.base.outputs.tag }}

- name: downloader
uses: geokrety/geokrety-gha-workflows/.github/actions/docker-build@main
id: docker-downloader
with:
image_name: geokrety/pictures-processor-base
image_name: geokrety/pictures-processor-downloader
dockerhub_username: ${{ inputs.dockerhub_username }}
dockerhub_token: ${{ inputs.dockerhub_token }}
dockerfile: Dockerfile.downloader
build_args: BASE_TAG=${{ steps.base.outputs.tag }}

0 comments on commit 11682cd

Please sign in to comment.