Skip to content

Commit

Permalink
Fix missing secrets in Tauri test
Browse files Browse the repository at this point in the history
  • Loading branch information
Gawdl3y committed Dec 10, 2023
1 parent df97db1 commit 8e6da27
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build-tauri-app.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,9 +40,9 @@ on:
# Secrets for the updater
secrets:
updaterKey:
required: false
required: true
updaterKeyPassword:
required: false
required: true

jobs:
tauri:
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -70,3 +70,6 @@ jobs:
tauri:
name: Build Tauri app
uses: ./.github/workflows/build-tauri-app.yml
secrets:
updaterKey: ${{ secrets.TAURI_UPDATER_KEY }}
updaterKeyPassword: ${{ secrets.TAURI_UPDATER_KEY_PASSWORD }}

0 comments on commit 8e6da27

Please sign in to comment.