From 4a13dc82791efd2eddebbf364c3e826078f39766 Mon Sep 17 00:00:00 2001 From: Lidia Mokevnina Date: Fri, 28 Jul 2023 18:30:22 +0200 Subject: [PATCH 1/3] 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/3] 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/3] [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/*