Skip to content

Commit 0c34a3f

Browse files
authored
Update build-release.yml
1 parent 73b803e commit 0c34a3f

1 file changed

Lines changed: 4 additions & 12 deletions

File tree

.github/workflows/build-release.yml

Lines changed: 4 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ on:
1010
tag:
1111
description: 'Release tag (e.g. v2.6.1.2)'
1212
required: true
13-
default: 'v2.6.2.0'
13+
default: 'v2.6.1.2'
1414
release_name:
1515
description: 'Release title (leave blank to use tag)'
1616
required: false
@@ -43,17 +43,9 @@ jobs:
4343
runs-on: ${{ matrix.os }}
4444

4545
steps:
46-
# 1a. Checkout — macOS & Linux (full checkout is fine)
47-
- name: Checkout (macOS & Linux)
48-
if: matrix.platform != 'windows'
49-
uses: actions/checkout@v4
50-
51-
# 1b. Checkout — Windows sparse
52-
# "Docs/Cognitive Sandbox Manifesto | ..." contains a pipe character
53-
# which is illegal on Windows NTFS; git exits 128 trying to create it.
54-
# Sparse checkout lets us include only the folders needed for the build.
55-
- name: Checkout (Windows — sparse)
56-
if: matrix.platform == 'windows'
46+
# 1. Checkout — sparse on all platforms to exclude Docs/
47+
# (contains a pipe character in a filename, illegal on Windows NTFS)
48+
- name: Checkout
5749
uses: actions/checkout@v4
5850
with:
5951
sparse-checkout: |

0 commit comments

Comments
 (0)