2 Commits

Author SHA1 Message Date
nicwands
d2b76399bc fix env references
Some checks are pending
Build Electron App / build (macos-latest, build:mac) (push) Waiting to run
Build Electron App / build (ubuntu-latest, build:linux) (push) Waiting to run
Build Electron App / build (windows-latest, build:win) (push) Waiting to run
2026-03-02 10:45:50 -05:00
nicwands
1c500ff052 update version 2026-03-02 10:36:12 -05:00
3 changed files with 3 additions and 6 deletions

View File

@@ -35,9 +35,6 @@ jobs:
- name: Run platform build - name: Run platform build
run: npm run ${{ matrix.script }} run: npm run ${{ matrix.script }}
env:
CSC_LINK: ${{ secrets.CSC_LINK }}
CSC_KEY_PASSWORD: ${{ secrets.CSC_KEY_PASSWORD }}
- name: Upload artifacts - name: Upload artifacts
uses: actions/upload-artifact@v4 uses: actions/upload-artifact@v4

View File

@@ -25,8 +25,8 @@ mac:
- NSDocumentsFolderUsageDescription: Application requests access to the user's Documents folder. - NSDocumentsFolderUsageDescription: Application requests access to the user's Documents folder.
- NSDownloadsFolderUsageDescription: Application requests access to the user's Downloads folder. - NSDownloadsFolderUsageDescription: Application requests access to the user's Downloads folder.
notarize: false notarize: false
cscLink: $CSC_LINK cscLink: ${{ secrets.CSC_LINK }}
cscKeyPassword: $CSC_KEY_PASSWORD cscKeyPassword: ${{ secrets.CSC_KEY_PASSWORD }}
dmg: dmg:
artifactName: ${name}-${version}.${ext} artifactName: ${name}-${version}.${ext}
linux: linux:

View File

@@ -1,6 +1,6 @@
{ {
"name": "app.takerofnotes.com", "name": "app.takerofnotes.com",
"version": "1.0.0", "version": "0.1.0",
"description": "An Electron application with Vue", "description": "An Electron application with Vue",
"main": "./out/main/index.js", "main": "./out/main/index.js",
"author": "example.com", "author": "example.com",