Skip to content

Commit

Permalink
fix: docker deploy flow
Browse files Browse the repository at this point in the history
  • Loading branch information
priyanshuverma-dev authored Nov 18, 2024
1 parent bc8268c commit bb2a933
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/docker-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
- name: Get version from Release workflow
id: get_version
run: |
VERSION=$(git describe --tags --abbrev=0) # Assuming tags follow the release version
VERSION=$(git describe --tags --abbrev=0 2>/dev/null || echo "v1.0.0") # Assuming tags follow the release version
echo "Version: $VERSION"
echo "::set-output name=version::$VERSION"
Expand Down

0 comments on commit bb2a933

Please sign in to comment.