Fix icon error for linux app (#316)
* Create icon folder for linux building app * CI Test: add clean workspace --------- Co-authored-by: Hien To <tominhhien97@gmail.com>
This commit is contained in:
parent
be05dc2a85
commit
63d8b895f3
15
.github/workflows/linter-and-test.yml
vendored
15
.github/workflows/linter-and-test.yml
vendored
@ -26,6 +26,12 @@ jobs:
|
|||||||
test-on-macos:
|
test-on-macos:
|
||||||
runs-on: [self-hosted, macOS, macos-desktop]
|
runs-on: [self-hosted, macOS, macos-desktop]
|
||||||
steps:
|
steps:
|
||||||
|
- name: 'Cleanup build folder'
|
||||||
|
run: |
|
||||||
|
ls -la ./
|
||||||
|
rm -rf ./* || true
|
||||||
|
rm -rf ./.??* || true
|
||||||
|
ls -la ./
|
||||||
- name: Getting the repo
|
- name: Getting the repo
|
||||||
uses: actions/checkout@v3
|
uses: actions/checkout@v3
|
||||||
|
|
||||||
@ -48,6 +54,9 @@ jobs:
|
|||||||
test-on-windows:
|
test-on-windows:
|
||||||
runs-on: [self-hosted, Windows, windows-desktop]
|
runs-on: [self-hosted, Windows, windows-desktop]
|
||||||
steps:
|
steps:
|
||||||
|
- name: Clean workspace
|
||||||
|
run: |
|
||||||
|
Remove-Item -Path .\* -Force -Recurse
|
||||||
- name: Getting the repo
|
- name: Getting the repo
|
||||||
uses: actions/checkout@v3
|
uses: actions/checkout@v3
|
||||||
|
|
||||||
@ -68,6 +77,12 @@ jobs:
|
|||||||
test-on-ubuntu:
|
test-on-ubuntu:
|
||||||
runs-on: [self-hosted, Linux, ubuntu-desktop]
|
runs-on: [self-hosted, Linux, ubuntu-desktop]
|
||||||
steps:
|
steps:
|
||||||
|
- name: 'Cleanup build folder'
|
||||||
|
run: |
|
||||||
|
ls -la ./
|
||||||
|
rm -rf ./* || true
|
||||||
|
rm -rf ./.??* || true
|
||||||
|
ls -la ./
|
||||||
- name: Getting the repo
|
- name: Getting the repo
|
||||||
uses: actions/checkout@v3
|
uses: actions/checkout@v3
|
||||||
|
|
||||||
|
|||||||
|
Before Width: | Height: | Size: 38 KiB After Width: | Height: | Size: 38 KiB |
@ -32,7 +32,16 @@
|
|||||||
"entitlementsInherit": "./entitlements.mac.plist",
|
"entitlementsInherit": "./entitlements.mac.plist",
|
||||||
"notarize": {
|
"notarize": {
|
||||||
"teamId": "YT49P7GXG4"
|
"teamId": "YT49P7GXG4"
|
||||||
}
|
},
|
||||||
|
"icon": "icons/icon.png"
|
||||||
|
},
|
||||||
|
"linux": {
|
||||||
|
"target": ["deb"],
|
||||||
|
"category": "Utility",
|
||||||
|
"icon": "icons/"
|
||||||
|
},
|
||||||
|
"win": {
|
||||||
|
"icon": "icons/icon.png"
|
||||||
},
|
},
|
||||||
"artifactName": "jan-${os}-${arch}-${version}.${ext}"
|
"artifactName": "jan-${os}-${arch}-${version}.${ext}"
|
||||||
},
|
},
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user