diff --git a/.github/workflows/build-images.yaml b/.github/workflows/build-images.yaml index 9093ce2..d72010c 100644 --- a/.github/workflows/build-images.yaml +++ b/.github/workflows/build-images.yaml @@ -32,13 +32,16 @@ jobs: id: meta uses: docker/metadata-action@v5 with: + images: | + ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}-frontend + ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}-backend tags: | type=sha,prefix=,suffix=-{{date 'X'}} type=raw,enable=${{ !startsWith(github.ref, 'refs/tags/') }},value=develop type=semver,pattern={{raw}} - name: test image names - run: echo "${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}-frontend${{ steps.meta.outputs.tags }}" + run: echo "${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}-frontend:${{ steps.meta.outputs.tags }}" # - name: Build and push frontend Docker image # uses: docker/build-push-action@v5 @@ -47,7 +50,7 @@ jobs: # push: true # tags: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}-frontend${{ steps.meta.outputs.tags }} # labels: ${{ steps.meta.outputs.labels }} - # + # - name: Build and push backend Docker image # uses: docker/build-push-action@v5 # with: