This repository has been archived by the owner on Jun 2, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 57
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
perf: improving performance, layout (#215)
Co-authored-by: nullishamy <git@amyerskine.me>
- Loading branch information
1 parent
54633c0
commit cadc3e2
Showing
37 changed files
with
1,015 additions
and
665 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
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,27 @@ | ||
name: "Publish containers for build" | ||
|
||
on: | ||
workflow_dispatch: | ||
pull_request: | ||
# types: [opened, reopened, synchronize] | ||
types: [synchronize] | ||
|
||
permissions: write-all | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
with: | ||
submodules: true | ||
|
||
- name: Generate and push image to ghcr | ||
run: | | ||
# build docker image for the ci | ||
sh docker/build.sh -v no | ||
# push the image to the registry | ||
sh docker/push.sh -u "${{ github.actor }}" -p "${{ secrets.GITHUB_TOKEN }}" |
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
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 |
---|---|---|
|
@@ -8,6 +8,9 @@ lib*/ | |
*.cfg | ||
.direnv | ||
build/ | ||
*.log | ||
.ruff-cache | ||
.tmp | ||
|
||
# Releases folder | ||
releases | ||
|
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,3 +1,3 @@ | ||
[submodule "colloid"] | ||
path = colloid | ||
path = sources/colloid | ||
url = https://github.com/vinceliuice/Colloid-gtk-theme.git |
Oops, something went wrong.