Skip to content

Commit

Permalink
yet another try
Browse files Browse the repository at this point in the history
  • Loading branch information
matthme committed Oct 8, 2024
1 parent 993dd24 commit 48a0d5d
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ jobs:
# macOS WITHOUT code signing
#---------------------------------------------------------------------------------------
- name: build and upload the app (macOS x86)
if: matrix.platform == 'macos-12' && ${{ !steps.shouldMacOSCodeSign.outputs.MACOS_CODE_SIGNING }}
if: (matrix.platform == 'macos-12') && ${{ !steps.shouldMacOSCodeSign.outputs.MACOS_CODE_SIGNING }}
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
CSC_IDENTITY_AUTO_DISCOVERY: false
Expand All @@ -92,7 +92,7 @@ jobs:
ls dist
- name: build and upload the app (macOS arm64)
if: matrix.platform == 'macos-latest' && ${{ !steps.shouldMacOSCodeSign.outputs.MACOS_CODE_SIGNING }}
if: (matrix.platform == 'macos-latest') && ${{ !steps.shouldMacOSCodeSign.outputs.MACOS_CODE_SIGNING }}
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
CSC_IDENTITY_AUTO_DISCOVERY: false
Expand All @@ -103,7 +103,7 @@ jobs:
# macOS WITH code signing
#---------------------------------------------------------------------------------------
- name: build and upload the app (macOS x86)
if: matrix.platform == 'macos-12' && ${{ steps.shouldMacOSCodeSign.outputs.MACOS_CODE_SIGNING }}
if: (matrix.platform == 'macos-12') && ${{ steps.shouldMacOSCodeSign.outputs.MACOS_CODE_SIGNING }}
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
APPLE_DEV_IDENTITY: ${{ secrets.APPLE_DEV_IDENTITY }}
Expand All @@ -116,7 +116,7 @@ jobs:
ls dist
- name: build and upload the app (macOS arm64)
if: matrix.platform == 'macos-latest' && ${{ steps.shouldMacOSCodeSign.outputs.MACOS_CODE_SIGNING }}
if: (matrix.platform == 'macos-latest') && ${{ steps.shouldMacOSCodeSign.outputs.MACOS_CODE_SIGNING }}
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
APPLE_DEV_IDENTITY: ${{ secrets.APPLE_DEV_IDENTITY }}
Expand Down

0 comments on commit 48a0d5d

Please sign in to comment.