From e67fa3c81730c5464e937e7e2292a0e7f1aea0dd Mon Sep 17 00:00:00 2001 From: Abdenasser Date: Thu, 7 Nov 2024 20:56:14 +0100 Subject: [PATCH] apple signing environment vars --- .github/workflows/macos-nightly.yml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.github/workflows/macos-nightly.yml b/.github/workflows/macos-nightly.yml index 1eba505..ac6e7a7 100644 --- a/.github/workflows/macos-nightly.yml +++ b/.github/workflows/macos-nightly.yml @@ -48,11 +48,19 @@ jobs: run: | echo "Building for x86_64..." npm run tauri build -- --target x86_64-apple-darwin --bundles dmg + env: + APPLE_ID: ${{ secrets.APPLE_ID }} + APPLE_PASSWORD: ${{ secrets.APPLE_PASSWORD }} + APPLE_TEAM_ID: ${{ secrets.APPLE_TEAM_ID }} - name: Build for Apple Silicon run: | echo "Building for aarch64..." npm run tauri build -- --target aarch64-apple-darwin --bundles dmg + env: + APPLE_ID: ${{ secrets.APPLE_ID }} + APPLE_PASSWORD: ${{ secrets.APPLE_PASSWORD }} + APPLE_TEAM_ID: ${{ secrets.APPLE_TEAM_ID }} - name: Upload Intel Build uses: actions/upload-artifact@v4