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.
Merge branch 'main' into chore/use-dynamic-url
- Loading branch information
Showing
26 changed files
with
1,170 additions
and
18,364 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,35 @@ | ||
name: "Generate test artifacts" | ||
|
||
on: | ||
pull_request: | ||
types: [opened, reopened, synchronize] | ||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
with: | ||
submodules: true | ||
- uses: actions/setup-python@v5 | ||
with: | ||
python-version: "3.11" | ||
cache: "pip" | ||
- name: Install dependencies | ||
run: pip install -r requirements.txt | ||
- name: Install colloid specific dependencies | ||
run: sudo apt update && sudo apt install -y sassc inkscape optipng | ||
- name: Generate themes | ||
run: | | ||
python patches/xfwm4/generate_assets.py | ||
python ./build.py mocha --all-accents --zip -d $PWD/releases && | ||
python ./build.py macchiato --all-accents --zip -d $PWD/releases && | ||
python ./build.py frappe --all-accents --zip -d $PWD/releases && | ||
python ./build.py latte --all-accents --zip -d $PWD/releases | ||
- name: Upload artifacts | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: '${{ github.sha }}-artifacts' | ||
path: ./releases/*.zip | ||
|
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
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
Oops, something went wrong.