Skip to content

Commit

Permalink
Fix mistagged gui builds
Browse files Browse the repository at this point in the history
  • Loading branch information
HeroCC committed Oct 25, 2024
1 parent 008e21c commit f297211
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions .github/workflows/docker-publish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -237,13 +237,12 @@ jobs:
if: steps.credentials.outputs.REGISTRY_READY == 'true'
run: |
BASE_TAGS=$(jq -cr '.tags | map("-t " + .) | join(" ")' <<< "$DOCKER_METADATA_OUTPUT_JSON")
GUI_TAGS=$(jq -cr '.tags | map("-t " + .) | join("-gui ")' <<< "$DOCKER_METADATA_OUTPUT_JSON")
GUI_TAGS=$(jq -cr '.tags | map("-t " + . + "-gui") | join(" ")' <<< "$DOCKER_METADATA_OUTPUT_JSON")
echo "Base Tags: ${BASE_TAGS}"
echo "GUI Tags: ${GUI_TAGS}"
docker buildx imagetools create $BASE_TAGS \
${{ env.REGISTRY_IMAGE }}@${{ needs.build-minrobot.outputs.digest }}
echo "GUI Tags: ${GUI_TAGS}"
docker buildx imagetools create $GUI_TAGS \
${{ env.REGISTRY_IMAGE }}@${{ needs.build-gui.outputs.digest }}

0 comments on commit f297211

Please sign in to comment.