Skip to content

Commit 76ae5f0

Browse files
committed
🐛 👷 Fix path bug in action
1 parent 07d815e commit 76ae5f0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/jekyll-gh-pages.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
shell: pwsh
3636
run: |
3737
Install-Module SqlServer -Repository PSGallery -Scope CurrentUser -Force
38-
$env:Path += ";$PWD"
38+
$env:Path += [io.path]::PathSeparator + "$PWD"
3939
./Export-Readme.ps1
4040
- name: Build with Jekyll
4141
uses: actions/jekyll-build-pages@v1

0 commit comments

Comments
 (0)