fix(ink): make diag backgrounds brighter #4
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: Build Extras | |
on: | |
workflow_dispatch: | |
push: | |
paths: | |
- "**/*.lua" | |
- "lua/kanagawa-paper/extras/**" | |
pull_request: | |
types: [closed] | |
paths: | |
- "**/*.lua" | |
- "lua/kanagawa-paper/extras/**" | |
jobs: | |
extras: | |
name: Build Extras | |
runs-on: ubuntu-latest | |
if: github.event_name == 'push' || github.event_name == 'workflow_dispatch' || github.event.pull_request.merged == true | |
permissions: | |
contents: write | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: rhysd/action-setup-vim@v1 | |
with: | |
neovim: true | |
- name: Set permissions | |
run: chmod +x scripts/build.sh | |
- name: Run build script | |
run: | | |
scripts/build.sh || { echo "❌ Build script failed!"; exit 1; } | |
git add -f extras/ | |
- uses: stefanzweifel/git-auto-commit-action@v5 | |
with: | |
commit_message: "build(extras): auto build themes for extras" |