We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6ee154d commit 6a7ce19Copy full SHA for 6a7ce19
1 file changed
.github/workflows/build.yml
@@ -133,7 +133,7 @@ jobs:
133
sign-macos:
134
name: Sign & Notarize (macOS)
135
needs: build
136
- if: github.event_name == 'release'
+ if: (github.event_name == 'release' || github.event_name == 'workflow_dispatch')
137
runs-on: macos-14
138
139
steps:
@@ -245,8 +245,9 @@ jobs:
245
echo "Detected version: $VERSION"
246
247
# Create signed package with CLI and its Frameworks (universal binary)
248
+ # Note: LabRecorder.cfg, LICENSE, README.md are inside LabRecorder.app/Contents/MacOS/
249
tar -cvzf "LabRecorder-${VERSION}-macOS_universal-signed.tar.gz" \
- LabRecorder.app LabRecorderCLI Frameworks LabRecorder.cfg LICENSE README.md
250
+ LabRecorder.app LabRecorderCLI Frameworks
251
252
echo "Created package:"
253
ls -la *.tar.gz
0 commit comments