📦 Chore: using notarytool instead of altool which will be disabled on 2023.11.01

This commit is contained in:
萌萌哒赫萝 2023-06-18 02:21:00 -07:00
parent b72cdf428c
commit 37ea22595b
3 changed files with 7 additions and 7 deletions

View File

@ -74,8 +74,7 @@ jobs:
- name: Build & release app - name: Build & release app
run: | run: |
yarn release yarn build
yarn upload-dist
env: env:
GH_TOKEN: ${{ secrets.GH_TOKEN }} GH_TOKEN: ${{ secrets.GH_TOKEN }}
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }} AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }}

View File

@ -3,13 +3,13 @@
"version": "1.9.4", "version": "1.9.4",
"author": { "author": {
"name": "Kuingsmile", "name": "Kuingsmile",
"email": "msq@msq.pub" "email": "pkukuing@gmail.com"
}, },
"description": "PicList is a simple and powerful cloude storage manage tool.", "description": "PicList is a simple and powerful cloude storage manage tool.",
"homepage": "https://piclist.cn", "homepage": "https://piclist.cn",
"bugs": { "bugs": {
"url": "https://github.com/Kuingsmile/PicList/issues", "url": "https://github.com/Kuingsmile/PicList/issues",
"email": "msq@msq.pub" "email": "pkukuing@gmail.com"
}, },
"license": "MIT", "license": "MIT",
"private": true, "private": true,
@ -67,7 +67,7 @@
"mitt": "^3.0.0", "mitt": "^3.0.0",
"nodejs-file-downloader": "^4.12.1", "nodejs-file-downloader": "^4.12.1",
"piclist": "^0.6.8", "piclist": "^0.6.8",
"pinia": "^2.1.3", "pinia": "^2.1.4",
"pinia-plugin-persistedstate": "^3.1.0", "pinia-plugin-persistedstate": "^3.1.0",
"qiniu": "^7.8.0", "qiniu": "^7.8.0",
"qrcode.vue": "^3.4.0", "qrcode.vue": "^3.4.0",
@ -84,7 +84,7 @@
}, },
"devDependencies": { "devDependencies": {
"@babel/plugin-proposal-optional-chaining": "^7.16.7", "@babel/plugin-proposal-optional-chaining": "^7.16.7",
"@electron/notarize": "^1.2.3", "@electron/notarize": "^1.2.4",
"@picgo/bump-version": "^1.1.2", "@picgo/bump-version": "^1.1.2",
"@types/ali-oss": "^6.16.8", "@types/ali-oss": "^6.16.8",
"@types/electron-devtools-installer": "^2.2.0", "@types/electron-devtools-installer": "^2.2.0",

View File

@ -28,7 +28,8 @@ async function main (context) {
appBundleId: 'com.kuingsmile.piclist', appBundleId: 'com.kuingsmile.piclist',
appPath: `${appOutDir}/${appName}.app`, appPath: `${appOutDir}/${appName}.app`,
appleId: XCODE_APP_LOADER_EMAIL, appleId: XCODE_APP_LOADER_EMAIL,
appleIdPassword: XCODE_APP_LOADER_PASSWORD appleIdPassword: XCODE_APP_LOADER_PASSWORD,
tool: 'notarytool'
}) })
console.log('Finished Apple notarization.') console.log('Finished Apple notarization.')
} }