Skip to content

Commit 84cf6f3

Browse files
committed
fix workflow command
Signed-off-by: Lacewell, Chaunte W <chaunte.w.lacewell@intel.com>
1 parent 3b72f05 commit 84cf6f3

2 files changed

Lines changed: 4 additions & 3 deletions

File tree

.github/workflows/Update_docs.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,7 @@ jobs:
1818
docs_changed: ${{ steps.check_changed_files.outputs.docs_changed }}
1919
steps:
2020
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.1.7
21-
- shell: pwsh
22-
id: check_changed_files
21+
- id: check_changed_files
2322
run: |
2423
# Diff HEAD
2524
$diff = git diff --name-only ${{ github.event.before }} ${{ github.event.after }}
@@ -30,7 +29,8 @@ jobs:
3029
$hasDiff = $srcDiff.Length -gt 0
3130
3231
# Set output
33-
Write-Host "::set-output name=docs_changed::$hasDiff"
32+
# Write-Host "::set-output name=docs_changed::$hasDiff"
33+
"docs_changed=$hasDiff" | Out-File -FilePath $env:GITHUB_OUTPUT -Append
3434
3535
3636
# Run job only if changes occurred in docs/

docs/guides/VDMS-mTLS-Support.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -135,3 +135,4 @@ db = vdms.vdms(use_tls=True, ca_cert_file="<local_path_to_parent_dir>/auth_files
135135
db.connect("systemA.domain", 55555)
136136
```
137137
138+
Test change

0 commit comments

Comments
 (0)