Skip to content

Commit 35fb4f0

Browse files
authored
Merge pull request #803 from jupyterlab/release-v4.1.5-1
Release v4.1.5-1
2 parents 566eb9d + 4d583e9 commit 35fb4f0

File tree

3 files changed

+13
-10
lines changed

3 files changed

+13
-10
lines changed

.github/workflows/publish.yml

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -116,6 +116,7 @@ jobs:
116116
CSC_FOR_PULL_REQUEST: true
117117
APPLEID: ${{ secrets.APPLEID }}
118118
APPLEIDPASS: ${{ secrets.APPLEIDPASS }}
119+
APPLE_TEAM_ID: ${{ secrets.APPLE_TEAM_ID }}
119120
CSC_KEY_PASSWORD: ${{ secrets.CSC_KEY_PASSWORD }}
120121
CSC_LINK: ${{ secrets.CSC_LINK }}
121122
run: |
@@ -270,11 +271,11 @@ jobs:
270271
snap: dist/JupyterLab.snap
271272
release: edge
272273

273-
- name: Publish snap to the latest/candidate channel in Snap Store
274-
if: matrix.cfg.platform == 'linux-64' && steps.release-exists.outputs.result == 'true'
275-
uses: snapcore/action-publish@v1
276-
env:
277-
SNAPCRAFT_STORE_CREDENTIALS: ${{ secrets.SNAPCRAFT_STORE_CREDENTIALS }}
278-
with:
279-
snap: dist/JupyterLab.snap
280-
release: candidate
274+
# - name: Publish snap to the latest/candidate channel in Snap Store
275+
# if: matrix.cfg.platform == 'linux-64' && steps.release-exists.outputs.result == 'true'
276+
# uses: snapcore/action-publish@v1
277+
# env:
278+
# SNAPCRAFT_STORE_CREDENTIALS: ${{ secrets.SNAPCRAFT_STORE_CREDENTIALS }}
279+
# with:
280+
# snap: dist/JupyterLab.snap
281+
# release: candidate

auto-release.log

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1709874609
1+
1711125108

scripts/notarize.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,8 @@ exports.default = async function notarizing(context) {
1717
appBundleId: 'org.jupyter.jupyterlab-desktop',
1818
appPath: `${appOutDir}/${appName}.app`,
1919
appleId: process.env.APPLEID,
20-
appleIdPassword: process.env.APPLEIDPASS
20+
appleIdPassword: process.env.APPLEIDPASS,
21+
tool: 'notarytool',
22+
teamId: process.env.APPLE_TEAM_ID
2123
});
2224
};

0 commit comments

Comments
 (0)