10 Commits

Author SHA1 Message Date
01ad3dbb82 Merge pull request 'Configure Renovate' (#2) from renovate/configure into main
Reviewed-on: https://git.front.kjuulh.io/kjuulh/gitignore/pulls/2
2022-10-25 20:57:25 +00:00
bfb8142522 Add renovate.json 2022-10-25 20:50:32 +00:00
8209a15d42 trying without alias 2022-10-21 12:08:23 +02:00
ce7f2f5206 trying again 2022-10-21 12:06:42 +02:00
0ed449c27d updated formula 2022-10-21 12:03:17 +02:00
7e51d6cca2 add completion script to homebrew 2022-10-21 11:55:37 +02:00
5d5155d452 install via. homebrew 2022-10-21 02:48:58 +02:00
13f8335cd2 cask works 2022-10-21 02:44:23 +02:00
0aadeec095 updated name 2022-10-21 02:41:32 +02:00
c07d023b5f with sha 2022-10-21 02:39:57 +02:00
5 changed files with 14 additions and 6 deletions

View File

@@ -159,6 +159,7 @@ jobs:
7z a "$staging.zip" "$staging"
echo "ASSET=$staging.zip" >> $GITHUB_ENV
else
cp "git-alias/git-ignore" "$staging/"
# The man page is only generated on Unix systems.
#cp "$outdir"/kignore.1 "$staging/doc/"
cp "target/${{ matrix.target }}/release/kignore" "$staging/"

View File

@@ -44,4 +44,7 @@ git clone https://github.com/kjuulh/gitignore
Added in HomebrewFormula
Instructions TBA
```bash
$ brew tap kjuulh/gitignore https://github.com/kjuulh/gitignore
$ brew install kjuulh/gitignore/kignore-bin
```

View File

@@ -2,4 +2,4 @@
set -e
gitignore $@
kignore $@

View File

@@ -1,16 +1,17 @@
class Kignore < Formula
class KignoreBin < Formula
desc "Easily add items to .gitignore and cleanup afterwards"
homepage "https://github.com/kjuulh/gitignore"
version '0.1.1'
version "0.1.3"
license "MIT"
if OS.mac?
url "https://github.com/kjuulh/kignore/releases/download/#{version}/kignore-#{version}-x86_64-apple-darwin.tar.gz"
sha256 ""
url "https://github.com/kjuulh/gitignore/releases/download/#{version}/kignore-#{version}-x86_64-apple-darwin.tar.gz"
sha256 "fa4e520854f0cc8222625b0398c778d4f474dd7a9ad1da1dd9a326ff7893bd44"
end
def install
bin.install "kignore"
bin.install "git-ignore"
end
end

3
renovate.json Normal file
View File

@@ -0,0 +1,3 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json"
}