Skip to content

Commit 792247b

Browse files
authored
move static after dynamic signing (#301)
1 parent 69762e6 commit 792247b

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

.github/workflows/macos_builds.yml

+5-3
Original file line numberDiff line numberDiff line change
@@ -41,8 +41,6 @@ jobs:
4141
shell: sh
4242
run: |
4343
mv target/release/libgodot_rapier.dylib bin${{ matrix.dimensions.short }}/addons/godot-rapier${{ matrix.dimensions.short }}/bin/libgodot_rapier.macos.framework/libgodot_rapier.macos.dylib
44-
mv target/release/libgodot_rapier.arm64.a bin${{ matrix.dimensions.short }}/addons/godot-rapier${{ matrix.dimensions.short }}/bin/libgodot_rapier.macos.framework/libgodot_rapier.macos.arm64.a
45-
mv target/release/libgodot_rapier.x86_64.a bin${{ matrix.dimensions.short }}/addons/godot-rapier${{ matrix.dimensions.short }}/bin/libgodot_rapier.macos.framework/libgodot_rapier.macos.x86_64.a
4644
- name: Mac Sign
4745
uses: ughuuu/godot-cpp-template/.github/actions/sign@add-more-stuff/options-to-build
4846
with:
@@ -54,7 +52,11 @@ jobs:
5452
APPLE_DEV_ID: ${{ secrets.APPLE_DEV_ID }}
5553
APPLE_DEV_TEAM_ID: ${{ secrets.APPLE_DEV_TEAM_ID }}
5654
APPLE_DEV_APP_ID: ${{ secrets.APPLE_DEV_APP_ID }}
57-
55+
- name: Copy to bin
56+
shell: sh
57+
run: |
58+
mv target/release/libgodot_rapier.arm64.a bin${{ matrix.dimensions.short }}/addons/godot-rapier${{ matrix.dimensions.short }}/bin/libgodot_rapier.macos.framework/libgodot_rapier.macos.arm64.a
59+
mv target/release/libgodot_rapier.x86_64.a bin${{ matrix.dimensions.short }}/addons/godot-rapier${{ matrix.dimensions.short }}/bin/libgodot_rapier.macos.framework/libgodot_rapier.macos.x86_64.a
5860
- name: Upload
5961
uses: actions/upload-artifact@v4
6062
with:

0 commit comments

Comments
 (0)