Rename APPLE_ID_PASSWORD (incorrect / unused) to APPLE_PASSWORD
#3598
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.

Description
I was confused that on the same page
APPLE_PASSWORDandAPPLE_ID_PASSWORDare mentioned.See examples
https://v2.tauri.app/distribute/sign/macos/#signing-in-cicd-platforms

https://v2.tauri.app/distribute/sign/macos/#notarization

So I looked around all repos:
https://github.com/search?q=org%3Atauri-apps+APPLE_ID_PASSWORD&type=code
https://github.com/search?q=org%3Atauri-apps+APPLE_PASSWORD&type=code
I found out in https://github.com/tauri-apps/tauri/blob/f855caf8a3830aa5dd6d0b039312866a5d9c3606/crates/tauri-bundler/src/bundle/macos/sign.rs#L100 that actually only
APPLE_PASSWORDis used.So this PR removes the confusion by renaming to the correct variable.
Note: I tried this in my own GitHub Actions and can confirm that it works.