Skip to content

Commit 46f54e1

Browse files
committed
✨ Feature: add showDockIcon option
ISSUES CLOSED: #1045
1 parent 32eb176 commit 46f54e1

File tree

3 files changed

+7
-1
lines changed

3 files changed

+7
-1
lines changed

.github/workflows/main.yml

+3
Original file line numberDiff line numberDiff line change
@@ -56,3 +56,6 @@ jobs:
5656
GH_TOKEN: ${{ secrets.GH_TOKEN }}
5757
PICGO_ENV_COS_SECRET_ID: ${{ secrets.PICGO_ENV_COS_SECRET_ID }}
5858
PICGO_ENV_COS_SECRET_KEY: ${{ secrets.PICGO_ENV_COS_SECRET_KEY }}
59+
PICGO_ENV_S3_SECRET_ID: ${{ secrets.PICGO_ENV_S3_SECRET_ID }}
60+
PICGO_ENV_S3_SECRET_KEY: ${{ secrets.PICGO_ENV_S3_SECRET_KEY }}
61+
PICGO_ENV_S3_ACCOUNT_ID: ${{ secrets.PICGO_ENV_S3_ACCOUNT_ID }}

.github/workflows/manually.yml

+3
Original file line numberDiff line numberDiff line change
@@ -53,3 +53,6 @@ jobs:
5353
GH_TOKEN: ${{ secrets.GH_TOKEN }}
5454
PICGO_ENV_COS_SECRET_ID: ${{ secrets.PICGO_ENV_COS_SECRET_ID }}
5555
PICGO_ENV_COS_SECRET_KEY: ${{ secrets.PICGO_ENV_COS_SECRET_KEY }}
56+
PICGO_ENV_S3_SECRET_ID: ${{ secrets.PICGO_ENV_S3_SECRET_ID }}
57+
PICGO_ENV_S3_SECRET_KEY: ${{ secrets.PICGO_ENV_S3_SECRET_KEY }}
58+
PICGO_ENV_S3_ACCOUNT_ID: ${{ secrets.PICGO_ENV_S3_ACCOUNT_ID }}

scripts/cos-link.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ const pkg = require('../package.json')
22
const version = pkg.version
33
// TODO: use the same name format
44
const generateURL = (platform, ext, prefix = 'PicGo-') => {
5-
return `https://picgo-1251750343.cos.ap-chengdu.myqcloud.com/${version}/${prefix}${version}${platform}${ext}`
5+
return `https://picgo-release.molunerfinn.com/${version}/${prefix}${version}${platform}${ext}`
66
}
77

88
const platformExtList = [

0 commit comments

Comments
 (0)