44be6bb595
* ci: build in PRs * ci: improve naming * ci: upload individual artifacts * ci: try running when PRs are pushed to * ci: name * ci: try individual again * ci: friendship ended with gha; gitlab ci/cd is my new friend * feat: introduce --from-artifact opt in install script
34 lines
1021 B
YAML
34 lines
1021 B
YAML
name: "Mainline release"
|
|
|
|
on:
|
|
push:
|
|
tags:
|
|
- "v*"
|
|
jobs:
|
|
release:
|
|
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 ./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: Add zips to release
|
|
uses: softprops/action-gh-release@v2
|
|
with:
|
|
draft: true
|
|
files: ./releases/*.zip
|