From bbc83762361f1aeaf3817e257233e1924917d8c6 Mon Sep 17 00:00:00 2001 From: Christo Todorov Date: Sat, 31 Aug 2024 17:48:58 +0200 Subject: [PATCH] fix(ci): add env variables for signing --- .github/workflows/publish-on-release.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/publish-on-release.yml b/.github/workflows/publish-on-release.yml index 939c62c..df9cf0e 100644 --- a/.github/workflows/publish-on-release.yml +++ b/.github/workflows/publish-on-release.yml @@ -46,6 +46,12 @@ jobs: - uses: tauri-apps/tauri-action@v0 env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + APPLE_CERTIFICATE: ${{ secrets.APPLE_CERTIFICATE }} + APPLE_CERTIFICATE_PASSWORD: ${{ secrets.APPLE_CERTIFICATE_PASSWORD }} + APPLE_SIGNING_IDENTITY: ${{ secrets.APPLE_SIGNING_IDENTITY }} + APPLE_ID: ${{ secrets.APPLE_ID }} + APPLE_PASSWORD: ${{ secrets.APPLE_PASSWORD }} + APPLE_TEAM_ID: ${{ secrets.APPLE_TEAM_ID }} with: projectPath: apps/desktop tagName: ${{ github.event.release.tag_name }}