From 11682cd872d2c36f1c80150aa63ecfe8f237ca28 Mon Sep 17 00:00:00 2001 From: geokrety-bot Date: Fri, 11 Aug 2023 19:32:36 +0200 Subject: [PATCH] ci: Fix building images --- .github/actions/docker-build/action.yml | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/.github/actions/docker-build/action.yml b/.github/actions/docker-build/action.yml index 4f05784..3d6cb20 100644 --- a/.github/actions/docker-build/action.yml +++ b/.github/actions/docker-build/action.yml @@ -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: @@ -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 }}