From b8d50a17f215db899acfb69cf7d7e1a3a68e7928 Mon Sep 17 00:00:00 2001 From: Will Chen Date: Mon, 14 Apr 2025 23:30:34 -0700 Subject: [PATCH] setup macos release --- .github/workflows/release.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 92ee0a6..57a679e 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -10,12 +10,13 @@ on: workflow_dispatch: jobs: build: + environment: release strategy: matrix: os: [ # { name: "linux", image: "ubuntu-latest" }, { name: "windows", image: "windows-latest" }, - # { name: "macos", image: "macos-latest" }, + { name: "macos", image: "macos-latest" }, ] runs-on: ${{ matrix.os.image }} steps: @@ -29,4 +30,7 @@ jobs: - name: Publish app env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + APPLE_TEAM_ID: ${{ secrets.APPLE_TEAM_ID }} + APPLE_ID: ${{ secrets.APPLE_ID }} + APPLE_PASSWORD: ${{ secrets.APPLE_PASSWORD }} run: npm run publish