I'm trying to setup a GitHub actions workflow to perform build on MacOS(10.15.7) system using self-hosted runner. My action workflow for build including code sign-in as follows
runs-on: [self-macos]
steps:
- uses: actions/checkout@master
- name: Build and Codesign
env:
KEYCHAIN_PASSWD: ${{ secrets.KEYCHAIN_PASSWD }}
KEYCHAIN_PATH: ${{ secrets.KEYCHAIN_PATH }}
DEVELOPER_ID: ${{ secrets.DEVELOPER_ID }}
run: |
security list-keychain -d user -s $KEYCHAIN_PATH
security unlock-keychain -p $KEYCHAIN_PASSWD $KEYCHAIN_PATH
./resources/compileExternalClasses.sh
Currently code-signing part is failing with below errors only on actions.
+ codesign -f -s '***' -v /Users/devadmin/actions-runner/_work/linux-driver/linux-driver/framework.app
error: The specified item could not be found in the keychain.
- script failed with code : 1
Running install script failed with exit code 1
build fail.
Error: Process completed with exit code 255.
On Mac runner
system terminal with the same GitHub action workspace source code build
& code signing
working without any issue.
Even through Jenkins
the same source code works without issues.
Already in our Mac Server side certificate installed and underKey-chain
section below have activated.
Trust - When using this certificate - Use System Defaults
Access Control - Allow all applications to access this item
Since the above issue is occurring only on github action build. Please let me know what I'm missing with action side?