From e1431de50b81b07e808e67a2ac39e0ca51e962ba Mon Sep 17 00:00:00 2001 From: vemv Date: Mon, 28 Aug 2023 09:52:45 +0200 Subject: [PATCH] Introduce a Makefile --- .gitignore | 1 + Makefile | 14 ++++++++++++++ README.adoc | 10 +++++----- deploy | 6 ------ package.json | 9 +++++++++ 5 files changed, 29 insertions(+), 11 deletions(-) create mode 100644 .gitignore create mode 100644 Makefile delete mode 100755 deploy create mode 100644 package.json diff --git a/.gitignore b/.gitignore new file mode 100644 index 00000000..0dec61dd --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +/package-lock.json diff --git a/Makefile b/Makefile new file mode 100644 index 00000000..3910bd49 --- /dev/null +++ b/Makefile @@ -0,0 +1,14 @@ +.PHONY: npm build deploy +.DEFAULT_GOAL := build + +npm: package.json + npm install --no-fund --no-audit --no-progress --save-dev --loglevel=error + npm run antora -- --version + +build: npm + npm run antora -- --fetch antora-playbook.yml + +deploy: build + git add docs + git commit -m 'Update site docs' + git push diff --git a/README.adoc b/README.adoc index 295c9752..6046fac4 100644 --- a/README.adoc +++ b/README.adoc @@ -13,7 +13,7 @@ Installing the Antora is super simple: [source] ---- -$ npm i -g @antora/cli@2.0 @antora/site-generator-default@2.0 +$ make npm ---- Check out https://docs.antora.org/antora/2.0/install/install-antora/[the detailed installation instructions] @@ -25,15 +25,15 @@ You can build the documentation locally from this repo. [source] ---- -$ cd cider-site -$ antora --pull antora-playbook.yml +$ cd docs.cider.mx +$ make build ---- -After you're done with the initial setup you can use the `deploy` script to push changes to the site: +After you're done with the initial setup you can use the `deploy` task to push changes to the site: [source] ---- -./deploy +$ make deploy ---- NOTE: You'll need commit access to the repository for this to work. diff --git a/deploy b/deploy deleted file mode 100755 index d2361dda..00000000 --- a/deploy +++ /dev/null @@ -1,6 +0,0 @@ -#!/bin/sh - -antora --fetch antora-playbook.yml -git add docs -git commit -m 'Update site docs' -git push diff --git a/package.json b/package.json new file mode 100644 index 00000000..a290f086 --- /dev/null +++ b/package.json @@ -0,0 +1,9 @@ +{ + "dependencies": { + "@antora/cli": "3.1.3", + "@antora/site-generator": "3.1.3" + }, + "scripts": { + "antora": "antora" + } +}