From a7605cf5dc97b4273b72a916c8c908287b134433 Mon Sep 17 00:00:00 2001 From: Matthieu Bollot Date: Thu, 21 Mar 2024 10:07:16 +0100 Subject: [PATCH] Feature/netlify deploy clean (#121) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * chore: 🤖 Allow asciidoctor for netlify * chore: 🤖 Add gemfile to install asciidoc for netlify * chore: add .ruby-version --- .ruby-version | 1 + Gemfile | 3 +++ netlify.toml | 5 ++++- 3 files changed, 8 insertions(+), 1 deletion(-) create mode 100644 .ruby-version create mode 100644 Gemfile diff --git a/.ruby-version b/.ruby-version new file mode 100644 index 000000000..15a279981 --- /dev/null +++ b/.ruby-version @@ -0,0 +1 @@ +3.3.0 diff --git a/Gemfile b/Gemfile new file mode 100644 index 000000000..6f0aefe14 --- /dev/null +++ b/Gemfile @@ -0,0 +1,3 @@ +source "https://rubygems.org" + +gem 'asciidoctor', '~> 2.0', '>= 2.0.22' diff --git a/netlify.toml b/netlify.toml index be39e39ac..53a56d3d4 100644 --- a/netlify.toml +++ b/netlify.toml @@ -17,4 +17,7 @@ package = "netlify-plugin-cypress" [plugins.inputs] - record = true \ No newline at end of file + record = true + +[security.exec] + allow = ['^asciidoctor$']