Skip to content

Commit

Permalink
fix local tagging
Browse files Browse the repository at this point in the history
  • Loading branch information
m2Giles committed Nov 13, 2024
1 parent 3581752 commit 78dc194
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion Justfile
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,11 @@ build image="bluefin" tag="latest" flavor="main" rechunk="0" ghcr="0" pipeline="
fi

# Get Version
ver="${tag}-${fedora_version}.$(date +%Y%m%d)"
if [[ "${tag}" =~ stable ]]; then
ver="${fedora_version}.$(date +%Y%m%d)"
else
ver="${tag}-${fedora_version}.$(date +%Y%m%d)"
fi

# Build Arguments
BUILD_ARGS=()
Expand Down

0 comments on commit 78dc194

Please sign in to comment.