Skip to content

Commit

Permalink
Merge tag 'v.0.1.1-alpha' into develop
Browse files Browse the repository at this point in the history
Testing auto-releasing
  • Loading branch information
toadle committed Oct 26, 2022
2 parents 0c8d1c1 + c089aaa commit 45616be
Show file tree
Hide file tree
Showing 4 changed files with 46 additions and 10 deletions.
31 changes: 31 additions & 0 deletions .github/workflows/build_release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: Release Go project

on:
push:
tags:
- "*" # triggers only if push new tag version, like `0.8.4` or else

jobs:
build:
name: GoReleaser build
runs-on: ubuntu-latest

steps:
- name: Check out code into the Go module directory
uses: actions/checkout@v2
with:
fetch-depth: 0 # See: https://goreleaser.com/ci/actions/

- name: Set up Go 1.14
uses: actions/setup-go@v2
with:
go-version: "1.18"
id: go

- name: Run GoReleaser
uses: goreleaser/goreleaser-action@master
with:
version: latest
args: release --rm-dist
env:
GITHUB_TOKEN: ${{ secrets.GO_RELEASER_GITHUB_TOKEN }}
2 changes: 1 addition & 1 deletion .github/workflows/main.yml → .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: All builds
name: CI / Testing
on: [push, pull_request]

jobs:
Expand Down
2 changes: 1 addition & 1 deletion .lit.example.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
close_on_action: false

calculators:
- command: trans --brief {input}
- command: echo {input} | xargs trans --brief
action: |
echo "{data}" | pbcopy
label: "trans {input}"
Expand Down
21 changes: 13 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,26 +17,31 @@ Type away into the fuzzy prompt to

All the stuff you desired is directly integrated from you sheel via a simple YAML-config.

[![Latest Release](https://img.shields.io/github/release/charmbracelet/bubbles.svg)](https://github.com/charmbracelet/bubbles/releases)
[![Build Status](https://github.com/charmbracelet/bubbles/workflows/build/badge.svg)](https://github.com/charmbracelet/bubbles/actions)

## Demo

[![asciicast](https://asciinema.org/a/c6dbWieV2Pn8DgfIbgqZlByPE.svg)](https://asciinema.org/a/c6dbWieV2Pn8DgfIbgqZlByPE)
![2022-10-24 22 45 34](https://user-images.githubusercontent.com/115103/197626118-f06675e0-7385-4afe-af97-f97613d8e7b2.gif)

## Installation

Download a binary from the [releases][releases] page.
**macOS**

```bash
brew tap toadle/lit
brew install lit-cli
```
or

Or build it yourself (requires Go 1.18+):
**Download** a binary from the [releases](https://github.com/toadle/lit/releases) page.

or

**Build it yourself** (requires Go 1.18+):

```bash
go get
make install
```

[releases]: https://github.com/mrusme/canard/releases

## User Manual

Everything `lit` does is based on regular terminal commands. `lit` will re-execute them on every change of your input and you can then navigate up and down to execute actions on the result.
Expand Down

0 comments on commit 45616be

Please sign in to comment.