Skip to content

Commit c5a88ff

Browse files
Merge pull request #591 from dolthub/eric/use-correct-codesign-certs
use correct certs and update build versions
2 parents 32dd148 + 7cf0cf3 commit c5a88ff

File tree

6 files changed

+11
-13
lines changed

6 files changed

+11
-13
lines changed

.github/workflows/cd-release-dmg.yaml

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ jobs:
5353
- name: Import codesign certs
5454
uses: apple-actions/import-codesign-certs@v3
5555
with:
56-
p12-file-base64: ${{ secrets.DEV_ID_CERT_BASE64 }}
56+
p12-file-base64: ${{ secrets.APPSTORE_CERTIFICATES_FILE_BASE64 }}
5757
p12-password: ${{ secrets.APPSTORE_CERTIFICATES_PASSWORD }}
5858

5959
- name: Cache Next.js build
@@ -68,9 +68,6 @@ jobs:
6868
6969
- name: Build dmg package
7070
working-directory: web
71-
env:
72-
CSC_LINK: ${{ secrets.DEV_ID_CERT_BASE64 }}
73-
CSC_KEY_PASSWORD: ${{ secrets.APPSTORE_CERTIFICATES_PASSWORD }}
7471
run: |
7572
yarn build:dmg
7673

.github/workflows/cd-release-mas.yaml

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,12 @@ jobs:
5151
UDID=$(echo $JSON | jq -r '.[0].udid')
5252
mv "$HOME/Library/MobileDevice/Provisioning Profiles/$UDID.provisionprofile" "${{ github.workspace }}/web/build/mac/MacAppStore.provisionprofile"
5353
54+
- name: Import codesign certs
55+
uses: apple-actions/import-codesign-certs@v3
56+
with:
57+
p12-file-base64: ${{ secrets.APPSTORE_CERTIFICATES_FILE_BASE64 }}
58+
p12-password: ${{ secrets.APPSTORE_CERTIFICATES_PASSWORD }}
59+
5460
- name: Cache Next.js build
5561
uses: actions/cache@v4
5662
with:
@@ -63,11 +69,6 @@ jobs:
6369
6470
- name: Build MAS package
6571
working-directory: web
66-
env:
67-
CSC_LINK: ${{ secrets.MAS_APP_CERT_BASE64 }}
68-
CSC_KEY_PASSWORD: ${{ secrets.APPSTORE_CERTIFICATES_PASSWORD }}
69-
CSC_INSTALLER_LINK: ${{ secrets.MAS_INSTALLER_CERT_BASE64 }}
70-
CSC_INSTALLER_KEY_PASSWORD: ${{ secrets.APPSTORE_CERTIFICATES_PASSWORD }}
7172
run: |
7273
yarn build:mas
7374
echo "DIST:"

web/build/builder-dmg-config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ directories:
33
buildResources: build
44
appId: com.dolthub.dolt-workbench
55
productName: DoltWorkbench
6-
buildVersion: 0.3.42
6+
buildVersion: 0.3.78
77
copyright: Copyright © 2024 <DoltHub Inc>
88
files:
99
- filter:

web/build/builder-linux-config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ directories:
33
buildResources: build
44
appId: com.dolthub.dolt-workbench
55
productName: Dolt-Workbench
6-
buildVersion: 0.3.28
6+
buildVersion: 0.3.52
77
copyright: Copyright © 2024 DoltHub Inc
88
icon: build/linux/icon.png
99
files:

web/build/builder-mas-config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ directories:
33
buildResources: build
44
appId: com.dolthub.dolt-workbench
55
productName: DoltWorkbench
6-
buildVersion: 0.3.42
6+
buildVersion: 0.3.78
77
copyright: Copyright © 2024 <DoltHub Inc>
88
files:
99
- filter:

web/build/builder-win-config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ directories:
33
buildResources: build
44
appId: com.dolthub.dolt-workbench
55
productName: Dolt-Workbench
6-
buildVersion: 0.3.28
6+
buildVersion: 0.3.52
77
copyright: Copyright © 2024 DoltHub Inc
88
icon: build/appx/icon.ico
99
files:

0 commit comments

Comments
 (0)