Skip to content

Commit

Permalink
Use vars.X for the team id. (#12)
Browse files Browse the repository at this point in the history
  • Loading branch information
floitsch authored Oct 30, 2024
1 parent 567fcd7 commit 1ac2e84
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ jobs:
certificate-password: ${{ secrets.MACOS_CERTIFICATE_PWD }}
username: ${{ secrets.AC_USERNAME }}
password: ${{ secrets.AC_PASSWORD }}
apple-team-id: 33DS2ZRDST
apple-team-id: ${{ vars.MACOS_TEAM_ID }}
app-path: main

- name: Check signature
Expand All @@ -56,7 +56,7 @@ jobs:
certificate-password: ${{ secrets.MACOS_CERTIFICATE_PWD }}
username: ${{ secrets.AC_USERNAME }}
password: ${{ secrets.AC_PASSWORD }}
apple-team-id: 33DS2ZRDST
apple-team-id: ${{ vars.MACOS_TEAM_ID }}
app-path: |
multi1/main
multi2/main
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ This action only runs on macOS.
| certificate-password | The password for the certificate | `${{ secrets.CERTIFICATE_PASSWORD }}` | Yes |
| username | The Apple ID username to use for notarization | `${{ secrets.APPLE_ID_USERNAME }}` | Yes |
| password | The Apple ID password to use for notarization | `${{ secrets.APPLE_ID_PASSWORD }}` | Yes |
| apple-team-id | The Apple Team ID to use for signing and notarization | `33DS2ZRDST` | Yes |
| apple-team-id | The Apple Team ID to use for signing and notarization | `${{ vars.APPLE_TEAM_ID }}` | Yes |
| app-path | The path(s) to the application to sign and notarize. Multiple files should be on separate lines. | `build/my_app` | Yes |
| entitlements-path | The path to the entitlements file to use for signing | `src/entitlements.plist` | No |

Expand All @@ -26,6 +26,6 @@ This action only runs on macOS.
certificate-password: ${{ secrets.CERTIFICATE_PASSWORD }}
username: ${{ secrets.APPLE_ID_USERNAME }}
password: ${{ secrets.APPLE_ID_PASSWORD }}
apple-team-id: 33DS2ZRDST
apple-team-id: ${{ vars.APPLE_TEAM_ID }}
app-path: build/my_app
```

0 comments on commit 1ac2e84

Please sign in to comment.