Skip to content

Commit a9ff667

Browse files
Fix script paths in build-release workflow
Updated the script paths in the build-release GitHub Actions workflow to use the correct relative paths with './dbatools/.github/scripts/'. This ensures the scripts are properly located and executed on all OS environments.
1 parent 6e7bef3 commit a9ff667

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/build-release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -133,15 +133,15 @@ jobs:
133133
matrix:
134134
include:
135135
- os: ubuntu-latest
136-
script: dbatools/dbatools/.github/scripts/gh-actions.ps1
136+
script: ./dbatools/.github/scripts/gh-actions.ps1
137137
shell: pwsh
138138
working-directory: ${{ github.workspace }}
139139
- os: macos-latest
140-
script: dbatools/dbatools/.github/scripts/gh-macactions.ps1
140+
script: ./dbatools/.github/scripts/gh-macactions.ps1
141141
shell: pwsh
142142
working-directory: ${{ github.workspace }}
143143
- os: windows-latest
144-
script: dbatools/dbatools/.github/scripts/gh-winactions.ps1
144+
script: ./dbatools/.github/scripts/gh-winactions.ps1
145145
shell: pwsh
146146
working-directory: ${{ github.workspace }}
147147

0 commit comments

Comments
 (0)