Penits
Some checks failed
Windows Release / build-windows (push) Failing after 1m3s

This commit is contained in:
2025-12-04 14:43:37 -05:00
parent f017b1322c
commit fd36c61f8f
2 changed files with 4 additions and 3 deletions

View File

@@ -43,9 +43,10 @@ jobs:
- name: Get version from package.json
id: version
working-directory: electron-app
shell: bash
run: |
$version = (Get-Content package.json | ConvertFrom-Json).version
echo "VERSION=$version" >> $env:GITHUB_OUTPUT
VERSION=$(node -p "require('./package.json').version")
echo "VERSION=$VERSION" >> $GITHUB_OUTPUT
- name: Create Release and Upload exe
uses: softprops/action-gh-release@v1

View File

@@ -1,6 +1,6 @@
{
"name": "rmtpocketwatcher",
"version": "1.0.2",
"version": "1.0.2.1",
"description": "Real-time AUEC price tracking desktop application",
"type": "module",
"main": "dist/main/index.js",