From 99381f6b75e4ad51e98381ad23d80e4514b445d4 Mon Sep 17 00:00:00 2001 From: Wolfgang Bremer Date: Thu, 4 Jun 2026 22:10:46 +0200 Subject: [PATCH] ci: drop obsolete gh-pages docs deploy workflow The docs/ tooling (package.json, package-lock.json, docusaurus.config.js) was removed in 0363b58 when docs moved to the apigear-docs repo, but this workflow was left behind. Every v* tag push now fails at actions/setup-node, which aborts when cache-dependency-path matches no package-lock.json. Remove the dead workflow; docs are built and published from apigear-docs. --- .github/workflows/deploy-gh-pages.yml | 36 --------------------------- 1 file changed, 36 deletions(-) delete mode 100644 .github/workflows/deploy-gh-pages.yml diff --git a/.github/workflows/deploy-gh-pages.yml b/.github/workflows/deploy-gh-pages.yml deleted file mode 100644 index 7300547c..00000000 --- a/.github/workflows/deploy-gh-pages.yml +++ /dev/null @@ -1,36 +0,0 @@ -name: Deploy to Github pages -on: - push: - branches: - - "!*" - tags: - - "v*" - -jobs: - build: - runs-on: ubuntu-latest - - steps: - - name: checkout - uses: actions/checkout@v4 - with: - fetch-depth: 0 - lfs: true - - - name: install dependencies - uses: actions/setup-node@v3 - with: - node-version: 18 - cache: 'npm' - cache-dependency-path: ./docs/package-lock.json - - run: npm ci - working-directory: 'docs' - - run: npm run build - working-directory: 'docs' - - - name: deploy to github pages - uses: peaceiris/actions-gh-pages@v3 - if: startsWith(github.ref, 'refs/tags/v') - with: - github_token: ${{ secrets.GITHUB_TOKEN }} - publish_dir: docs/build \ No newline at end of file