Skip to content
This repository has been archived by the owner on Jan 31, 2024. It is now read-only.

Commit

Permalink
added Apple_ID & Apple_Password for app notorization
Browse files Browse the repository at this point in the history
  • Loading branch information
ImmaZoni committed Sep 7, 2021
1 parent 30c7ede commit f62d13c
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 8 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: "build-osx"
name: "publish"
on: workflow_dispatch

jobs:
Expand All @@ -8,7 +8,7 @@ jobs:
matrix:
platform: [macos-latest, ubuntu-latest, windows-latest]

runs-on: macos-latest
runs-on: ${{ matrix.platform }}
steps:
- uses: actions/checkout@v2
- name: setup node
Expand All @@ -33,9 +33,11 @@ jobs:
APPLE_CERTIFICATE: ${{ secrets.MACOS_CERTIFICATE }}
APPLE_CERTIFICATE_PASSWORD: ${{ secrets.MACOS_CERTIFICATE_PWD }}
APPLE_SIGNING_IDENTITY: ${{ secrets.MACOS_IDENTITY_ID }}
APPLE_ID: ${{ secrets.APPLE_ID }}
APPLE_PASSWORD: ${{ secrets.APPLE_PASSWORD }}
with:
tagName: app-v__VERSION__ # the action automatically replaces \_\_VERSION\_\_ with the app version
releaseName: "App v__VERSION__"
body: "See the assets to download this version and install."
tagName: app-v__VERSION__-code-sign # the action automatically replaces \_\_VERSION\_\_ with the app version
releaseName: "App v__VERSION__-code-sign"
body: " Code Sign Test Prerelease, see the assets to download this version and install."
draft: true
prerelease: false
prerelease: true
6 changes: 4 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,9 +33,11 @@ jobs:
APPLE_CERTIFICATE: ${{ secrets.MACOS_CERTIFICATE }}
APPLE_CERTIFICATE_PASSWORD: ${{ secrets.MACOS_CERTIFICATE_PWD }}
APPLE_SIGNING_IDENTITY: ${{ secrets.MACOS_IDENTITY_ID }}
APPLE_ID: ${{ secrets.APPLE_ID }}
APPLE_PASSWORD: ${{ secrets.APPLE_PASSWORD }}
with:
tagName: app-v__VERSION__-code-sign # the action automatically replaces \_\_VERSION\_\_ with the app version
releaseName: "App v__VERSION__-code-sign"
tagName: app-v__VERSION__-code-sign-notorized # the action automatically replaces \_\_VERSION\_\_ with the app version
releaseName: "App v__VERSION__-code-sign-notorized"
body: " Code Sign Test Prerelease, see the assets to download this version and install."
draft: true
prerelease: true

0 comments on commit f62d13c

Please sign in to comment.