Skip to content
This repository has been archived by the owner on Nov 13, 2024. It is now read-only.

Commit

Permalink
Fix step
Browse files Browse the repository at this point in the history
  • Loading branch information
izellevy committed Jan 2, 2024
1 parent 6b137e8 commit 3b95ce4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build-push-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,9 +36,9 @@ jobs:
- name: Export Docker tag
env:
INPUT_TAG: ${{ inputs.image-tag }}
FALLBACK_TAG: ${{ steps.ghd.outputs.describe }}
DESCRIBE_TAG: ${{ steps.ghd.outputs.describe }}
run: |
export IMAGE_TAG=${INPUT_TAG:-($FALLBACK_TAG | sed 's/V//')}
IMAGE_TAG=${INPUT_TAG:-$(echo $DESCRIBE_TAG | sed 's/V//')}
echo $IMAGE_TAG
echo IMAGE_TAG=$IMAGE_TAG >> $GITHUB_ENV
# - name: Build and push
Expand Down

0 comments on commit 3b95ce4

Please sign in to comment.