From 4a13dc82791efd2eddebbf364c3e826078f39766 Mon Sep 17 00:00:00 2001 From: Lidia Mokevnina Date: Fri, 28 Jul 2023 18:30:22 +0200 Subject: [PATCH 1/4] test --- lib/uffizzi/cli/common.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/uffizzi/cli/common.rb b/lib/uffizzi/cli/common.rb index 66f557ca..d8b2bced 100644 --- a/lib/uffizzi/cli/common.rb +++ b/lib/uffizzi/cli/common.rb @@ -6,9 +6,9 @@ module Uffizzi class Cli::Common class << self def show_manual(command_name) - manual_doc_path = File.join(Uffizzi.root, "man/#{command_name}") + manual_doc_path = File.join(Uffizzi.root, "man/#{command_name}.ronn") - Open3.pipeline("man #{manual_doc_path}") + Uffizzi.ui.say(File.read(manual_doc_path)) end end end From bb9d2d94fc3a88dd20add03f376da38081bc265d Mon Sep 17 00:00:00 2001 From: Lidia Mokevnina Date: Fri, 28 Jul 2023 18:55:12 +0200 Subject: [PATCH 2/4] added test tag trigger --- .github/workflows/create-github-release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/create-github-release.yml b/.github/workflows/create-github-release.yml index df6d2725..8d0194eb 100644 --- a/.github/workflows/create-github-release.yml +++ b/.github/workflows/create-github-release.yml @@ -3,7 +3,7 @@ on: push: tags: - 'v*.*.*' - + - 'TEST-*' env: RELEASE_VERSION: ${{ github.ref_name }} LINUX_BIN_PATH: uffizzi-${{ github.ref_name }}-linux-x86_64 From edf8fd8f5d4b468108bd93e930da88432dd1a335 Mon Sep 17 00:00:00 2001 From: Lidia Mokevnina Date: Fri, 28 Jul 2023 19:29:47 +0200 Subject: [PATCH 3/4] [281] removed man, test trigger --- .github/workflows/create-github-release.yml | 1 - Dockerfile | 3 --- 2 files changed, 4 deletions(-) diff --git a/.github/workflows/create-github-release.yml b/.github/workflows/create-github-release.yml index 8d0194eb..9469163f 100644 --- a/.github/workflows/create-github-release.yml +++ b/.github/workflows/create-github-release.yml @@ -3,7 +3,6 @@ on: push: tags: - 'v*.*.*' - - 'TEST-*' env: RELEASE_VERSION: ${{ github.ref_name }} LINUX_BIN_PATH: uffizzi-${{ github.ref_name }}-linux-x86_64 diff --git a/Dockerfile b/Dockerfile index c5b98176..60a0eb16 100644 --- a/Dockerfile +++ b/Dockerfile @@ -9,8 +9,6 @@ RUN apk --update add --no-cache \ ruby-json \ openssl \ groff \ - mandoc \ - man-pages \ bash \ vim @@ -35,7 +33,6 @@ RUN bundle exec rake install FROM ruby:3.0.3 AS shell RUN apt-get update && apt-get install -y \ - man-db \ vim \ bash \ && rm -rf /var/lib/apt/lists/* From c8aa9f242841ab7bbe69efc4f17ba01b03c2deed Mon Sep 17 00:00:00 2001 From: Lidia Mokevnina Date: Mon, 31 Jul 2023 11:50:14 +0200 Subject: [PATCH 4/4] Change version to 2.0.11 --- Gemfile.lock | 2 +- lib/uffizzi/version.rb | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Gemfile.lock b/Gemfile.lock index d4de7b08..adf88034 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - uffizzi-cli (2.0.10) + uffizzi-cli (2.0.11) activesupport awesome_print faker diff --git a/lib/uffizzi/version.rb b/lib/uffizzi/version.rb index dc0d1a70..b18197b9 100644 --- a/lib/uffizzi/version.rb +++ b/lib/uffizzi/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true module Uffizzi - VERSION = '2.0.10' + VERSION = '2.0.11' end