-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
e0c5710
commit ab68c27
Showing
6 changed files
with
282 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
name: Development | ||
on: | ||
push: | ||
|
||
jobs: | ||
build: | ||
name: Build theme | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
|
||
- name: Install dependencies | ||
run: npm install | ||
|
||
- name: Build theme | ||
run: bash build.sh | ||
|
||
- name: Upload theme | ||
uses: actions/upload-artifact@v3 | ||
with: | ||
name: Breeze.css | ||
path: breeze.css |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,3 @@ | ||
*.css | ||
upload.local.sh | ||
upload.local.sh | ||
node_modules |
This file was deleted.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
{ | ||
"name": "breeze-trilium", | ||
"version": "1.0.0", | ||
"description": "Custom theme for Trilium Notes designed to match closely KDE's default theme, KDE Breeze.", | ||
"main": "index.js", | ||
"scripts": { | ||
"build": "lessc src/color-scheme/breeze-auto.less breeze.css" | ||
}, | ||
"keywords": [], | ||
"author": "Elian Doran <[email protected]>", | ||
"license": "UNLICENSED", | ||
"repository": { | ||
"type": "git", | ||
"url": "git+https://github.com/eliandoran/breeze-trilium.git" | ||
}, | ||
"bugs": { | ||
"url": "https://github.com/eliandoran/breeze-trilium/issues" | ||
}, | ||
"homepage": "https://github.com/eliandoran/breeze-trilium#readme", | ||
"devDependencies": { | ||
"less": "^4.2.0" | ||
} | ||
} |