Azureremoves

You might also like

Download as txt, pdf, or txt
Download as txt, pdf, or txt
You are on page 1of 1

- task: InstallAppleCertificate@1

displayName: 'Install release signing certificates'


condition: eq(variables['isReleaseMode'], true)
inputs:
certSecureFile: 'Certificates.p12'
certPwd: $(secrets.macOS.certificatesImportPassword)

- script: ./CI/package-macos.sh
displayName: 'Package obs-midi'
env:
RELEASE_MODE: $(isReleaseMode)
CODE_SIGNING_IDENTITY: $(secrets.macOS.codeSigningIdentity)
INSTALLER_SIGNING_IDENTITY: $(secrets.macOS.installerSigningIdentity)
AC_USERNAME: $(secrets.macOS.notarization.username)
AC_PASSWORD: $(secrets.macOS.notarization.password)
AC_PROVIDER_SHORTNAME: $(secrets.macOS.notarization.providerShortName)

You might also like