Skip to content

Commit

Permalink
fix(apbx): duplicate file name
Browse files Browse the repository at this point in the history
  • Loading branch information
he3als committed Jun 7, 2024
1 parent badd6c8 commit 76cffc9
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/apbx.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ on:
push:
paths:
- "src/**"
- ".github/workflows/apbx.yaml"

env:
SXSC_REPO: "https://github.com/Atlas-OS/sxsc"
Expand Down Expand Up @@ -113,10 +114,10 @@ jobs:
if: ${{ !startsWith(github.ref, 'refs/heads/na-') }}
run: |
echo "Making a renamed password protected (malte) ZIP of playbook files..."
$pbName = "Atlas Playbook $($env:GITHUB_SHA.Substring(0,8)).apbx"
$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..."
Move-Item $pbName "../release-zip"
Move-Item "$pbName.apbx" "../release-zip"
working-directory: src\playbook

- name: Upload artifact
Expand Down

0 comments on commit 76cffc9

Please sign in to comment.