Skip to content

Commit

Permalink
fix version logging
Browse files Browse the repository at this point in the history
  • Loading branch information
DominikN committed Dec 18, 2023
1 parent b361180 commit bc8e082
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build-docker-image.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Build a Docker Image ${{ inputs.foxglove_version }}
name: Build a Docker Image

on:
workflow_dispatch:
Expand Down Expand Up @@ -35,7 +35,7 @@ jobs:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}

- name: Build and push (production)
- name: Build and push (production) v${{ inputs.foxglove_version }}
if: github.ref_name == 'main'
uses: docker/build-push-action@v3
with:
Expand All @@ -50,7 +50,7 @@ jobs:
husarion/foxglove:nightly
cache-to: type=inline

- name: Build and push (feature branch)
- name: Build and push (feature branch) v${{ inputs.foxglove_version }}
if: github.ref_name != 'main'
uses: docker/build-push-action@v3
with:
Expand Down

0 comments on commit bc8e082

Please sign in to comment.