From 2f1bd7fc52722e11c1ff131a6e22c768558ef366 Mon Sep 17 00:00:00 2001 From: Eray Zesen Date: Sun, 22 Dec 2024 05:14:00 +0300 Subject: [PATCH] github actions settings 15 --- .github/workflows/builds.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/builds.yml b/.github/workflows/builds.yml index cd3c23c..eb05e6a 100644 --- a/.github/workflows/builds.yml +++ b/.github/workflows/builds.yml @@ -292,7 +292,7 @@ jobs: APPLE_CERT_BASE64: ${{ secrets.APPLE_CERT_BASE64 }} uses: ./.github/actions/sign with: - FRAMEWORK_PATH: bin/macos/macos.framework + FRAMEWORK_PATH: project/addons/quarkphysics/bin/macos.framework APPLE_CERT_BASE64: ${{ secrets.APPLE_CERT_BASE64 }} APPLE_CERT_PASSWORD: ${{ secrets.APPLE_CERT_PASSWORD }} APPLE_DEV_PASSWORD: ${{ secrets.APPLE_DEV_PASSWORD }} @@ -304,13 +304,13 @@ jobs: if: ${{ matrix.platform == 'windows' }} shell: pwsh run: | - Remove-Item bin/* -Include *.exp,*.lib,*.pdb -Force + Remove-Item project/addons/quarkphysics/bin/* -Include *.exp,*.lib,*.pdb -Force - name: Upload Artifact uses: actions/upload-artifact@v4 with: name: godot-cpp-template-${{ matrix.platform }}-${{ matrix.arch }}-${{ matrix.float-precision }}-${{ matrix.target-type }} path: | - ${{ github.workspace }}/bin/** + ${{ github.workspace }}/project/addons/quarkphysics/bin/** # Merges all the build artifacts together into a single godot-cpp-template artifact. # If you comment out this step, all the builds will be uploaded individually.