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