diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 6c23c6f..9023a24 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -108,13 +108,13 @@ jobs: LICENSE out/make/**/*.{dmg,rpm,deb,Setup.exe} - - name: Distribute artifacts to R2 - uses: ryand56/r2-upload-action@master - if: steps.tag_release.outputs.successful - with: - r2-account-id: ${{ secrets.CLOUDFLARE_ACCOUNT_ID }} - r2-access-key-id: ${{ secrets.CLOUDFLARE_R2_ACCESS_KEY_ID }} - r2-secret-access-key: ${{ secrets.CLOUDFLARE_R2_SECRET_ACCESS_KEY }} - r2-bucket: ${{ secrets.CLOUDFLARE_ARTIFACTS_R2 }} - source-dir: out/make/ - destination-dir: dockit +# - name: Distribute artifacts to R2 +# uses: ryand56/r2-upload-action@master +# if: steps.tag_release.outputs.successful +# with: +# r2-account-id: ${{ secrets.CLOUDFLARE_ACCOUNT_ID }} +# r2-access-key-id: ${{ secrets.CLOUDFLARE_R2_ACCESS_KEY_ID }} +# r2-secret-access-key: ${{ secrets.CLOUDFLARE_R2_SECRET_ACCESS_KEY }} +# r2-bucket: ${{ secrets.CLOUDFLARE_ARTIFACTS_R2 }} +# source-dir: out/make/ +# destination-dir: dockit diff --git a/forge.config.ts b/forge.config.ts index 682de46..4e6378f 100644 --- a/forge.config.ts +++ b/forge.config.ts @@ -13,12 +13,15 @@ const config: ForgeConfig = { asar: true, icon: iconPath, executableName: 'DocKit', - osxSign: {}, - osxNotarize: { - appleId: process.env.APPLE_ID, - appleIdPassword: process.env.APPLE_ID_PASSWORD, - teamId: process.env.APPLE_TEAM_ID, - }, + appBundleId: 'club.geekfun.dockit', + // osxSign: { + // identity: 'Developer ID Application: Lisheng Zi (Z44247ZSR9)', + // }, + // osxNotarize: { + // appleId: process.env.APPLE_ID, + // appleIdPassword: process.env.APPLE_ID_PASSWORD, + // teamId: process.env.APPLE_TEAM_ID, + // }, }, rebuildConfig: {}, makers: [ @@ -27,6 +30,7 @@ const config: ForgeConfig = { description, iconUrl: 'https://gitee.com/geek-fun/dockit/raw/master/public/dockit.png', setupIcon: `${iconPath}.ico`, + noDelta: true, // Disables delta updates }), new MakerRpm({ options: { homepage, icon: `${iconPath}.png` },