Skip to content

Commit b6deb23

Browse files
committed
chore: removing old build
Signed-off-by: Pawel Psztyc <[email protected]>
1 parent f3fe82a commit b6deb23

File tree

5 files changed

+7
-65
lines changed

5 files changed

+7
-65
lines changed

.github/workflows/test-and-publish.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -61,3 +61,7 @@ jobs:
6161
env:
6262
API_KEY_ID: ${{ secrets.api_key_id }}
6363
API_KEY_ISSUER_ID: ${{ secrets.api_key_issuer_id }}
64+
65+
- name: Send Windows store verification
66+
if: startsWith(matrix.os, 'windows')
67+
run: ./tasks/win-store-build.cmd

tasks/arc-publish.sh

Lines changed: 0 additions & 51 deletions
This file was deleted.

tasks/build-win-store-package.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ const fs = require('fs-extra');
55

66
/**
77
* A script that performs Windows build and signing then it converts
8-
* the build into APPX package that can be ditributed in Windows store.
8+
* the build into APPX package that can be distributed in Windows store.
99
*
1010
* The build script assumes the following variables are set:
1111
* - CSC_NAME
@@ -46,12 +46,12 @@ class WindowsStoreBuild {
4646

4747
async buildWindows() {
4848
const config = await this.getWinConfig();
49-
const Platform = ebuilder.Platform;
49+
const { Platform } = ebuilder;
5050
const opts = {
5151
targets: Platform.WINDOWS.createTarget('nsis'),
5252
config,
5353
};
54-
return await ebuilder.build(opts);
54+
return ebuilder.build(opts);
5555
}
5656

5757
async convert() {

tasks/pack-secrets.sh

Lines changed: 0 additions & 4 deletions
This file was deleted.

tasks/win-store-build.cmd

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,3 @@
1-
set CSC_NAME=Pawel Psztyc
2-
set CSC_LINK=advancedrestclient.pfx
3-
set WIN_CSC_LINK=advancedrestclient.pfx
4-
5-
: The password is set in the profile's variables
6-
7-
./node_modules/.bin/electron-builder -w
81
electron-windows-store --input-directory dist\win-unpacked --output-directory dist\arc-win --package-version 15.0.1.0 --package-name AdvancedRestClient --publisher-display-name 'Pawel Psztyc' --publisher 'CN=D213CA20-88CE-42AC-A9F2-C5D41BF04550' --assets 'build\appx' --identity-name '48695PawelPsztyc.advanced-rest-client'
92

103
: Publish to https://partner.microsoft.com/en-us/dashboard/products/9NMQQT55RBRC/submissions/

0 commit comments

Comments
 (0)