mirror of
https://github.com/xscriptor/obsidian.git
synced 2026-07-22 04:10:24 +00:00
- Add 12 city-themed color schemes switchable via Style Settings - Add comprehensive syntax token coverage for CM6 and Prism - Add per-language code block tints derived from scheme palette - Add Graph View color variables per scheme - Add GitHub Actions release workflow - Add CHANGELOG.md - Update manifest.json to version 2.0.0 - Update versions.json - Remove stale backup files
25 lines
460 B
YAML
25 lines
460 B
YAML
name: Release Obsidian theme
|
|
|
|
on:
|
|
push:
|
|
tags:
|
|
- "*"
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
|
|
- name: Create release
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
run: |
|
|
tag="${GITHUB_REF#refs/tags/}"
|
|
|
|
gh release create "$tag" \
|
|
--title="$tag" \
|
|
--generate-notes \
|
|
--draft \
|
|
manifest.json theme.css
|