Skip to content

Commit

Permalink
feat: trying to fix appdmg error
Browse files Browse the repository at this point in the history
  • Loading branch information
hrenaud committed Aug 2, 2024
1 parent ecda993 commit b17f93c
Showing 1 changed file with 12 additions and 4 deletions.
16 changes: 12 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -85,16 +85,24 @@ jobs:
run: echo ${APPLE_TEAM_ID:0:3}
env:
APPLE_TEAM_ID: ${{ secrets.APPLE_TEAM_ID }}
- name: reinstall appdmg
if: matrix.os.image == 'macos-latest'
# https://github.com/actions/runner-images/issues/8796
run: npm uninstall -g appdmg && npm install -g appdmg
# - name: reinstall appdmg
# if: matrix.os.image == 'macos-latest'
# # https://github.com/actions/runner-images/issues/8796
# run: npm uninstall -g appdmg && npm install -g appdmg
- name: Add MacOS certs
if: matrix.os.image == 'macos-latest'
run: chmod +x add-osx-cert.sh && ./add-osx-cert.sh
env:
CERTIFICATE_OSX_APPLICATION: ${{ secrets.APPLE_APPLICATION_CERT }}
CERTIFICATE_PASSWORD: ${{ secrets.APPLE_APPLICATION_CERT_PASSWORD }}
- name: Make
run: npm run make:ci
env:
APPLE_ID: ${{ secrets.APPLE_ID }}
APPLE_PASSWORD: ${{ secrets.APPLE_PASSWORD }}
APPLE_TEAM_ID: ${{ secrets.APPLE_TEAM_ID }}
APPLE_APPLICATION_CERT: ${{ secrets.APPLE_APPLICATION_CERT }}
KEY_PASSWORD: ${{ secrets.APPLE_APPLICATION_CERT_PASSWORD }}
- name: Publish app
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Expand Down

0 comments on commit b17f93c

Please sign in to comment.