Skip to content

Commit 2021eaa

Browse files
authored
Certify mac os binary (#78)
* Add mac os signing of mac os
1 parent 17b1c95 commit 2021eaa

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/tagged_release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ jobs:
119119
if: matrix.os == 'windows-latest'
120120
uses: actions/upload-artifact@v4
121121
with:
122-
name: aspect-model-editor-v${{ github.event.inputs.release_version }}-win
122+
name: ame-backend-v${{ github.event.inputs.release_version }}-win
123123
path: |
124124
aspect-model-editor-runtime/target/ame-backend-${{ github.event.inputs.release_version }}-win.exe
125125
aspect-model-editor-runtime/target/*.dll

.jenkins/Jenkinsfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -92,9 +92,9 @@ pipeline {
9292
stage('MacOS Notarization') {
9393
steps {
9494
script {
95-
sh "zip -j ame-backend-${env.version}-mac.zip signed_dir/ame-backend-${env.version}-mac"
95+
sh "zip -j ame-backend-v${env.version}-mac.zip signed_dir/ame-backend-${env.version}-mac"
9696

97-
def macOsFile = "ame-backend-${env.version}-mac.zip"
97+
def macOsFile = "ame-backend-v${env.version}-mac.zip"
9898

9999
def jsonOptions = "options={\"primaryBundleId\": \"org.eclipse.esmf\", \"staple\": true};type=application/json"
100100
def response = sh(script: "curl -X POST -F file=@${macOsFile} -F '${jsonOptions}' https://cbi.eclipse.org/macos/xcrun/notarize", returnStdout: true).trim()

0 commit comments

Comments
 (0)