Skip to content

Commit 025dc0d

Browse files
Update CI config to include specific JSON files
Modified workflow and AppVeyor configurations to ensure .github/dbatools-library-version.json, bin/dbatools-buildref-index.json, and bin/dbatools-sqlinstallationcomponents.json are not ignored in CI triggers. Also updated dbatools-library-version.json to remove the preview suffix from the version.
1 parent 8a4bbca commit 025dc0d

File tree

5 files changed

+13
-5
lines changed

5 files changed

+13
-5
lines changed
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
{
2-
"version": "2025.8.17-preview-dac-20250817060550",
2+
"version": "2025.8.17",
33
"notes": "Version of dbatools.library to use for CI/CD and development"
44
}

.github/workflows/integration-tests-repl.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@ on:
66
paths-ignore:
77
- '**/*.md'
88
- '**/*.json'
9-
- '!.github/dbatools-library-version.json'
109
- 'docs/**'
1110
- '.github/FUNDING.yml'
1211
- '.github/ISSUE_TEMPLATE/**'
@@ -16,6 +15,9 @@ on:
1615
- '.vscode/**'
1716
- 'bin/**'
1817
- 'en-us/**'
18+
- '!.github/dbatools-library-version.json'
19+
- '!bin/dbatools-buildref-index.json'
20+
- '!bin/dbatools-sqlinstallationcomponents.json'
1921
defaults:
2022
run:
2123
shell: pwsh

.github/workflows/integration-tests.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@ on:
66
paths-ignore:
77
- '**/*.md'
88
- '**/*.json'
9-
- '!.github/dbatools-library-version.json'
109
- 'docs/**'
1110
- '.github/FUNDING.yml'
1211
- '.github/ISSUE_TEMPLATE/**'
@@ -16,6 +15,9 @@ on:
1615
- '.vscode/**'
1716
- 'bin/**'
1817
- 'en-us/**'
18+
- '!.github/dbatools-library-version.json'
19+
- '!bin/dbatools-buildref-index.json'
20+
- '!bin/dbatools-sqlinstallationcomponents.json'
1921
defaults:
2022
run:
2123
shell: pwsh

.github/workflows/xplat-import.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@ on:
66
paths-ignore:
77
- '**/*.md'
88
- '**/*.json'
9-
- '!.github/dbatools-library-version.json'
109
- 'docs/**'
1110
- '.github/FUNDING.yml'
1211
- '.github/ISSUE_TEMPLATE/**'
@@ -16,6 +15,9 @@ on:
1615
- '.vscode/**'
1716
- 'bin/**'
1817
- 'en-us/**'
18+
- '!.github/dbatools-library-version.json'
19+
- '!bin/dbatools-buildref-index.json'
20+
- '!bin/dbatools-sqlinstallationcomponents.json'
1921

2022
jobs:
2123
build:

appveyor.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@ skip_commits:
1212
files:
1313
- '**/*.md'
1414
- '**/*.json'
15-
- '!.github/dbatools-library-version.json'
1615
- 'docs/**'
1716
- '.github/FUNDING.yml'
1817
- '.github/ISSUE_TEMPLATE/**'
@@ -22,6 +21,9 @@ skip_commits:
2221
- '.vscode/**'
2322
- 'bin/**'
2423
- 'en-us/**'
24+
- '!.github/dbatools-library-version.json'
25+
- '!bin/dbatools-buildref-index.json'
26+
- '!bin/dbatools-sqlinstallationcomponents.json'
2527
message: /\[skip ci\]/
2628

2729
build_script:

0 commit comments

Comments
 (0)