From 2806b851eae48a79258d85868c1a9d35a6fcf8b9 Mon Sep 17 00:00:00 2001 From: Michael Fyffe <6224270+TraGicCode@users.noreply.github.com> Date: Mon, 17 Nov 2025 12:55:03 -0600 Subject: [PATCH] Fix docker labels by manually setting them --- .github/workflows/docker_build.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/docker_build.yml b/.github/workflows/docker_build.yml index 599c9c9..fc2c0c4 100644 --- a/.github/workflows/docker_build.yml +++ b/.github/workflows/docker_build.yml @@ -29,11 +29,17 @@ jobs: username: tragiccode password: ${{ secrets.DOCKERHUB_TOKEN }} + # Revisit this. We should probably be triggering this off of a tag event. + # Which would automatically tag the image with the version and latest and allow us to remove + # the manual 'tags' property below - name: Extract metadata (tags, labels) for Docker id: meta uses: docker/metadata-action@v5 with: images: tragiccode/busly-cli + tags: | + ${{ inputs.version }} + latest - name: Build and push Docker image id: push