Skip to content

Commit 92dc7d6

Browse files
committed
chore: prep v0.2.1 release
1 parent 08f5659 commit 92dc7d6

5 files changed

Lines changed: 26 additions & 10 deletions

File tree

.github/workflows/release.yml

Lines changed: 19 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -63,9 +63,25 @@ jobs:
6363
sha256sum "$ARTIFACT" > "$OUT"
6464
fi
6565
66-
- name: Upload release assets
67-
uses: softprops/action-gh-release@v2
66+
- name: Upload artifacts
67+
uses: actions/upload-artifact@v4
6868
with:
69-
files: |
69+
name: release-${{ matrix.target }}
70+
path: |
7071
goodcommit-${{ matrix.target }}.tar.gz
7172
checksums-${{ matrix.target }}.txt
73+
74+
publish:
75+
runs-on: ubuntu-latest
76+
needs: build
77+
steps:
78+
- uses: actions/download-artifact@v4
79+
with:
80+
path: dist
81+
merge-multiple: true
82+
pattern: release-*
83+
84+
- name: Upload release assets
85+
uses: softprops/action-gh-release@v2
86+
with:
87+
files: dist/*

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: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "goodcommit"
3-
version = "0.2.0"
3+
version = "0.2.1"
44
edition = "2021"
55
license = "MIT"
66
description = "Good Commit: fast, reliable AI commit messages"

homebrew/goodcommit.rb

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
class Goodcommit < Formula
22
desc "Good Commit: fast, reliable AI commit messages"
33
homepage "https://github.com/Bikz/goodcommit"
4-
version "0.2.0"
4+
version "0.2.1"
55

66
on_macos do
77
if Hardware::CPU.arm?
8-
url "https://github.com/Bikz/goodcommit/releases/download/v0.2.0/goodcommit-aarch64-apple-darwin.tar.gz"
8+
url "https://github.com/Bikz/goodcommit/releases/download/v0.2.1/goodcommit-aarch64-apple-darwin.tar.gz"
99
sha256 "REPLACE_ME"
1010
else
11-
url "https://github.com/Bikz/goodcommit/releases/download/v0.2.0/goodcommit-x86_64-apple-darwin.tar.gz"
11+
url "https://github.com/Bikz/goodcommit/releases/download/v0.2.1/goodcommit-x86_64-apple-darwin.tar.gz"
1212
sha256 "REPLACE_ME"
1313
end
1414
end
@@ -18,7 +18,7 @@ class Goodcommit < Formula
1818
odie "linux arm64 builds are not yet available"
1919
end
2020

21-
url "https://github.com/Bikz/goodcommit/releases/download/v0.2.0/goodcommit-x86_64-unknown-linux-gnu.tar.gz"
21+
url "https://github.com/Bikz/goodcommit/releases/download/v0.2.1/goodcommit-x86_64-unknown-linux-gnu.tar.gz"
2222
sha256 "REPLACE_ME"
2323
end
2424

npm/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "goodcommit",
3-
"version": "0.2.0",
3+
"version": "0.2.1",
44
"description": "Good Commit: fast, reliable AI commit messages",
55
"license": "MIT",
66
"repository": {

0 commit comments

Comments
 (0)