Skip to content

Commit edb79ed

Browse files
committed
fix(ci): add v prefix to dev tags for consistent versioning
- Updated dev tag generation to include v prefix - Now generates v1.0.0-dev.5.a1b2c3d instead of 1.0.0-dev.5.a1b2c3d - Aligns with release tags and improves Renovate compatibility
1 parent 4fbb734 commit edb79ed

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
- name: Upload coverage to Codecov
3535
uses: codecov/codecov-action@v5
3636
with:
37-
file: ./coverage.txt
37+
files: ./coverage.txt
3838
flags: unittests
3939
name: codecov-umbrella
4040

@@ -148,7 +148,7 @@ jobs:
148148
COMMIT_COUNT=$(git rev-list --count ${LAST_TAG}..HEAD)
149149
fi
150150
151-
DEV_TAG="${VERSION}-dev.${COMMIT_COUNT}.${SHORT_SHA}"
151+
DEV_TAG="v${VERSION}-dev.${COMMIT_COUNT}.${SHORT_SHA}"
152152
echo "dev_tag=${DEV_TAG}" >> $GITHUB_OUTPUT
153153
echo "Last release tag: ${LAST_TAG:-'none'}"
154154
echo "Base version: ${VERSION}"
@@ -174,7 +174,6 @@ jobs:
174174
labels: ${{ steps.docker_meta.outputs.labels }}
175175
cache-from: type=gha
176176
cache-to: type=gha,mode=min
177-
continue-on-error: false
178177
build-args: |
179178
VERSION=${{ steps.meta.outputs.dev_tag }}
180179
COMMIT=${{ github.sha }}

0 commit comments

Comments
 (0)