Skip to content

Commit

Permalink
ci: Docker publish fix
Browse files Browse the repository at this point in the history
  • Loading branch information
rsenden committed Sep 6, 2024
1 parent 77cf4dc commit 3c7d364
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,8 +55,8 @@ jobs:
branch="${GITHUB_REF#refs/heads/}"
tag="dev_${branch//[^a-zA-Z0-9_.-]/.}" # Replace all special characters by a dot
major="0"
minor="$(date +'%Y%m%d)"
patch="$(date +'%H%M%S)-$tag"
minor="$(date +'%Y%m%d')"
patch="$(date +'%H%M%S')-$tag"
version="${major}.${minor}.${patch}"
echo DO_BUILD=true >> $GITHUB_ENV # We always want to do a build if we're building a branch
echo BRANCH=${branch} >> $GITHUB_ENV
Expand Down

0 comments on commit 3c7d364

Please sign in to comment.