r0b08x [chore] 5/20/2024, 11:02:10 AM #2
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Mac OS Test | |
on: | |
push: | |
jobs: | |
package-and-release-macos: | |
runs-on: macos-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Node.js | |
uses: actions/setup-node@v2 | |
with: | |
node-version: 'lts/*' | |
- name: Install dependencies | |
run: npm install | |
- name: Decode and Install Certificates | |
env: | |
CERTIFICATE_P12_BASE64: ${{ secrets.CERTIFICATE_P12_BASE64 }} | |
CERTIFICATE_P12_PASSWORD: ${{ secrets.CERTIFICATE_P12_PASSWORD }} | |
run: | | |
echo $CERTIFICATE_P12_BASE64 | base64 --decode > certificate.p12 | |
security create-keychain -p actions temp.keychain | |
security import certificate.p12 -k ~/Library/Keychains/temp.keychain -P "$CERTIFICATE_P12_PASSWORD" -T /usr/bin/codesign | |
security list-keychains -s temp.keychain | |
security default-keychain -s temp.keychain | |
security unlock-keychain -p actions temp.keychain | |
security set-key-partition-list -S apple-tool:,apple: -s -k actions temp.keychain | |
- name: Build and package macOS app | |
env: | |
APPLE_ID: ${{ secrets.APPLE_ID }} | |
APPLE_TEAM_ID: ${{ secrets.APPLE_TEAM_ID }} | |
APPLE_APP_SPECIFIC_PASSWORD: ${{ secrets.APPLE_APP_SPECIFIC_PASSWORD }} | |
DEBUG: '*' | |
run: npm run publish-macos | |