We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0fe9cec commit d2ade60Copy full SHA for d2ade60
1 file changed
.github/workflows/create_new_release.yml
@@ -38,6 +38,16 @@ jobs:
38
fetch-depth: 0
39
ref: ${{ inputs.target_branch }}
40
41
+ - name: Debug version.json files
42
+ run: |
43
+ echo "PWD=$(pwd)"
44
+ echo "Listing all version.json files tracked by git:"
45
+ git ls-files | grep -E '(^|/)(version\.json)$' || true
46
+ echo "Root version.json (if present):"
47
+ [ -f version.json ] && sed -n '1,200p' version.json || echo "no root version.json"
48
+ echo "Search for empty version fields:"
49
+ git grep -n '"version"\s*:\s*""' || true
50
+
51
- name: Nerdbank.GitVersioning (install + outputs)
52
id: nbgv
53
uses: dotnet/nbgv@v0.4.2
0 commit comments