Skip to content

Commit

Permalink
fix(local-build): typo in playbook extension
Browse files Browse the repository at this point in the history
  • Loading branch information
he3als committed Jun 12, 2024
1 parent eff4bcf commit 871eb1c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/apbx.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ jobs:
echo "Making a renamed password protected (malte) ZIP of playbook files..."
$pbName = "Atlas Playbook $($env:GITHUB_SHA.Substring(0,8))"
& ..\local-build.ps1 -ReplaceOldPlaybook -AddLiveLog -Removals Verification, WinverRequirement -FileName $pbName
echo "Move the .abpx playbook into 'Release ZIP' to be released as an artifact with the additional files..."
echo "Move the .apbx playbook into 'Release ZIP' to be released as an artifact with the additional files..."
Move-Item "$pbName.apbx" "../release-zip"
working-directory: src\playbook

Expand Down
2 changes: 1 addition & 1 deletion src/local-build.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ $apbxFileName = "$fileName.apbx"
function GetNewName {
while (Test-Path -Path $apbxFileName) {
$num++
$script:apbxFileName = "$fileName ($num).abpx"
$script:apbxFileName = "$fileName ($num).apbx"
}
}
if ($replaceOldPlaybook -and (Test-Path -Path $apbxFileName)) {
Expand Down

0 comments on commit 871eb1c

Please sign in to comment.