From 1ca4304806dd2ee57a9f9c984fcabe0cff1c70f3 Mon Sep 17 00:00:00 2001 From: onyx-and-iris Date: Wed, 12 Mar 2025 15:15:42 +0000 Subject: [PATCH] add Install with Go tools remove release task from Taskfile --- README.md | 7 +++++++ Taskfile.yaml | 7 ------- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index 15f5b5f..7e0f465 100644 --- a/README.md +++ b/README.md @@ -7,6 +7,13 @@ ## Install +With Go tools: + +```bash +go generate ./... +go install ./cmd/gignore +``` + With [Task][task]: ```bash diff --git a/Taskfile.yaml b/Taskfile.yaml index e953b38..76cd25e 100644 --- a/Taskfile.yaml +++ b/Taskfile.yaml @@ -23,13 +23,6 @@ tasks: - task: build-windows - task: build-linux - release: - desc: Generate the gitignore.io templates and then build the gignore project for Windows and Linux - deps: [generate] - cmds: - - task: build-windows - - task: build-linux - vet: desc: Vet the code deps: [fmt]