diff --git a/.circleci/config.yml b/.circleci/config.yml index a00a4e9..040e67f 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -9,13 +9,24 @@ jobs: - checkout - run: name: Set up Node.js - command: nvm install 22 && nvm use 22 + command: | + nvm install 22 + nvm use 22 + - run: + name: Install Build Dependencies + command: | + choco install python visualstudio2022-workload-vctools -y + python -m pip install --upgrade pip setuptools wheel - run: name: Install NPM Packages command: npm install - run: name: Build Electron App for Windows + # environment: + # AZURE_TENANT_ID: <<>> + # AZURE_CLIENT_ID: <<>> + # AZURE_CLIENT_SECRET: <<>> command: npm run build:win - store_artifacts: path: .\dist