Skip to content

Commit

Permalink
Updated linux_builds.yml and macos_builds.yml to support redot as exp…
Browse files Browse the repository at this point in the history
…ort name.
  • Loading branch information
Bioblaze committed Oct 7, 2024
1 parent 04b7343 commit 05cd4a2
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/linux_builds.yml
Original file line number Diff line number Diff line change
Expand Up @@ -162,8 +162,8 @@ jobs:
- name: Prepare artifact
if: matrix.artifact
run: |
strip bin/godot.*
chmod +x bin/godot.*
strip bin/redot.*
chmod +x bin/redot.*
- name: Upload artifact
uses: ./.github/actions/upload-artifact
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/macos_builds.yml
Original file line number Diff line number Diff line change
Expand Up @@ -76,10 +76,10 @@ jobs:

- name: Prepare artifact
run: |
lipo -create ./bin/godot.macos.${{ matrix.target }}.x86_64 ./bin/godot.macos.${{ matrix.target }}.arm64 -output ./bin/godot.macos.${{ matrix.target }}.universal
rm ./bin/godot.macos.${{ matrix.target }}.x86_64 ./bin/godot.macos.${{ matrix.target }}.arm64
strip bin/godot.*
chmod +x bin/godot.*
lipo -create ./bin/redot.macos.${{ matrix.target }}.x86_64 ./bin/redot.macos.${{ matrix.target }}.arm64 -output ./bin/redot.macos.${{ matrix.target }}.universal
rm ./bin/redot.macos.${{ matrix.target }}.x86_64 ./bin/redot.macos.${{ matrix.target }}.arm64
strip bin/redot.*
chmod +x bin/redot.*
- name: Upload artifact
uses: ./.github/actions/upload-artifact
Expand Down

0 comments on commit 05cd4a2

Please sign in to comment.