Skip to content

Commit 4dadb48

Browse files
committed
release: v0.1.2
1 parent 59b7b6e commit 4dadb48

File tree

3 files changed

+24
-4
lines changed

3 files changed

+24
-4
lines changed

.github/workflows/publish.yml

Lines changed: 21 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ env:
1010
CARGO_INCREMENTAL: 0
1111

1212
jobs:
13-
publish:
14-
name: Publish
13+
publish-binaries:
14+
name: Publish binaries
1515
permissions:
1616
contents: write
1717
strategy:
@@ -64,3 +64,22 @@ jobs:
6464
asset_path: ${{ env.ASSET }}
6565
asset_name: ${{ env.ASSET }}
6666
asset_content_type: application/octet-stream
67+
publish-aur:
68+
name: Publish AUR
69+
runs-on: ubuntu-20.04
70+
steps:
71+
- uses: actions/[email protected]
72+
- name: Install Rust
73+
uses: dtolnay/rust-toolchain@nightly
74+
with:
75+
target: ${{ matrix.target }}
76+
- name: Install cargo-binstall
77+
uses: cargo-bins/[email protected]
78+
- name: Install cargo-aur
79+
run: cargo binstall cargo-aur
80+
- name: Build AUR
81+
run: cargo aur --musl
82+
- uses: actions/[email protected]
83+
with:
84+
name: aur
85+
path: target/cargo-aur/

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,12 @@
11
[package]
22
name = "lazyjj"
33
description = "TUI for Jujutsu/jj"
4-
version = "0.1.1"
4+
version = "0.1.2"
55
edition = "2021"
66
license = "Apache-2.0"
77
readme = "README.md"
88
repository = "https://github.com/Cretezy/lazyjj"
9+
authors = ["Charles Crete <[email protected]>"]
910

1011

1112
[package.metadata.binstall]

0 commit comments

Comments
 (0)