Skip to content

Commit

Permalink
Add secrets
Browse files Browse the repository at this point in the history
  • Loading branch information
Hacksore committed Nov 16, 2023
1 parent 3eec383 commit 1e9e319
Showing 1 changed file with 10 additions and 5 deletions.
15 changes: 10 additions & 5 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ on:
types: [published]

jobs:
build-mac:
release-mac:
runs-on: "macos-latest"
steps:
- uses: actions/checkout@v4
Expand All @@ -26,10 +26,15 @@ jobs:
run: pnpm install
- 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 }}
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}
with:
tagName: app-v__VERSION__ # the action automatically replaces \_\_VERSION\_\_ with the app version
releaseName: "App v__VERSION__"
tagName: v__VERSION__ # the action automatically replaces \_\_VERSION\_\_ with the app version
releaseName: "Overlayed v__VERSION__"
releaseBody: "See the assets to download this version and install."
releaseDraft: true
prerelease: false
prerelease: true

0 comments on commit 1e9e319

Please sign in to comment.