Skip to content

Commit

Permalink
Merge pull request #153 from wolfv/notarize_releases
Browse files Browse the repository at this point in the history
notarize releases, too
  • Loading branch information
tdejager authored Jun 29, 2023
2 parents 868a2f0 + 3fdc175 commit 793cc36
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -247,8 +247,8 @@ jobs:
# The apple id password is a app specific password that you can get on the apple website (https://support.apple.com/en-us/HT204397) (usually a UUID looking string)
# The team id is the team id of the Apple Developer Team.
- name: Notarize binary
# only execute this step when on main branch and on macOS
if: matrix.job.os == 'macOS-latest' && github.ref == 'refs/heads/main'
# only execute this step when releasing, or on main branch and on macOS
if: startsWith(matrix.job.os, 'macOS-') && (github.ref == 'refs/heads/main' || steps.is-release.outputs.IS_RELEASE)
env:
APPLEID_TEAMID: ${{ secrets.APPLEID_TEAMID }}
APPLEID_USERNAME: ${{ secrets.APPLEID_USERNAME }}
Expand Down

0 comments on commit 793cc36

Please sign in to comment.