From a48345bb94756da3e6949d1ad70521db99b89732 Mon Sep 17 00:00:00 2001 From: Pete Savage Date: Tue, 14 Jan 2025 17:24:18 +0000 Subject: [PATCH] Remove doc workflow * Antora is no longer used and the docs are all markdown now --- .github/workflows/docs.yml | 29 ----------------------------- 1 file changed, 29 deletions(-) delete mode 100644 .github/workflows/docs.yml diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml deleted file mode 100644 index 93a6f5d57..000000000 --- a/.github/workflows/docs.yml +++ /dev/null @@ -1,29 +0,0 @@ ---- -name: Submit docs - -on: - push: - branches: - - master - paths: - - 'docs/**' - - '**/*.adoc' - -jobs: - docs_build: - runs-on: ubuntu-20.04 - steps: - - name: Check out source code - uses: actions/checkout@v2 - with: - ref: gh_pages - - uses: actions/setup-node@v2 - - name: Install packages and deps - run: | - npm install @antora/cli @antora/site-generator-default - ./node_modules/.bin/antora playbook.yml - git config user.name github-actions - git config user.email github-actions@github.com - git add docs/* - git commit -m "Updated pages for $GITHUB_SHA" - git push