Skip to content

Commit

Permalink
Test 1
Browse files Browse the repository at this point in the history
  • Loading branch information
Ferllings committed Sep 26, 2023
1 parent af24c37 commit 05e34cf
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 4 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,6 @@ name: Build/release

on:
push:
tags:
- 'v*'

jobs:
release:
Expand All @@ -18,6 +16,9 @@ jobs:
- os: macos-latest
platform: darwin
arch: universal
- os: ubuntu-latest
platform: linux
arch: x64

steps:
- name: Check out Git repository
Expand Down Expand Up @@ -62,7 +63,7 @@ jobs:

# If the commit is tagged with a version (e.g. "v1.0.0"),
# release the app after building
release: true #${{ startsWith(github.ref, 'refs/tags/v') }}
release: ${{ startsWith(github.ref, 'refs/tags/v') }}
args: ${{ matrix.electron-arch-overrides }}
env:
# macOS notarization API key
Expand Down
Binary file added build/icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
19 changes: 18 additions & 1 deletion electron-builder.yml
Original file line number Diff line number Diff line change
Expand Up @@ -69,8 +69,25 @@ msi:
portable:
artifactName: "${name}-Portable-${env.ARCH}-${version}.${ext}"

linux:
icon: "build/icon.png"
desktop:
StartupNotify: "false"
Encoding: "UTF-8"
MimeType: "x-scheme-handler/deeplink"
target: ["AppImage", "rpm", "deb"]
artifactName: "${productName}-Setup-${version}.${ext}"

deb:
priority: "optional"
#afterInstall:"installer/linux/after-install.tpl",

#rpm:
#fpm: ["--before-install", "installer/linux/before-install.tpl"],
#afterInstall:"installer/linux/after-install.tpl",

publish:
provider: github
repo: CCAe
owner: ThePacielloGroup
releaseType: release
releaseType: release

0 comments on commit 05e34cf

Please sign in to comment.