This repository has been archived by the owner on Jun 2, 2024. It is now read-only.
fix: daArKrDaRkdarkdark #20
Workflow file for this run
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
name: "Release" | |
on: | |
push: | |
tags: | |
- "v*" | |
jobs: | |
release: | |
strategy: | |
matrix: | |
flavor: [mocha, macchiato, latte, frappe] | |
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 ${{ matrix.flavor }} -a all --zip -d $PWD/releases | |
- name: Add zips to release | |
uses: softprops/action-gh-release@v2 | |
with: | |
draft: true | |
files: ./releases/*.zip |