Skip to content

Commit

Permalink
add custom pack step on Windows
Browse files Browse the repository at this point in the history
  • Loading branch information
bamboo committed Jan 3, 2025
1 parent 0f05c07 commit 41f6f30
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .github/workflows/builds.yml
Original file line number Diff line number Diff line change
Expand Up @@ -315,8 +315,15 @@ jobs:
APPLE_DEV_APP_ID: ${{ secrets.APPLE_DEV_APP_ID }}

- name: Pack
if: ${{ matrix.platform != 'windows' }}
run: make pack

- name: Pack - Windows
if: ${{ matrix.platform == 'windows' }}
run: |
Copy-Item -Recurse -Force -Path "demo/addons" -Destination "bin/pack"
Copy-Item -Recurse -Force -Path "bin/android", "bin/ios", "bin/linux", "bin/macos", "bin/web", "bin/windows", "demo/bin/godot-s7-scheme.gdextension" -Destination "bin/pack/bin"
- name: Upload Artifact
uses: actions/upload-artifact@v4
with:
Expand Down

0 comments on commit 41f6f30

Please sign in to comment.