From 7cf41a1bb9b3f0a2eac82c296a764688f5d8b35c Mon Sep 17 00:00:00 2001 From: Alexander Turenko Date: Sat, 28 Sep 2024 03:21:27 +0300 Subject: [PATCH] ci: fix module API publish job (again) The new version of the publishing action leads to the following error: NOWRAP ``` Error: File not found: '/home/runner/work/_actions/JamesIves/github-pages-deploy-action/v4.6.6/lib/main.js' ``` NOWRAP Let's revert it to v4.6.4 (because v4.6.5 change was reverted in v4.6.6). See also https://github.com/JamesIves/github-pages-deploy-action/issues/1697 NO_DOC=no code changes NO_CHANGELOG=see NO_DOC NO_TEST=see NO_DOC --- .github/workflows/publish-module-api-doc.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/publish-module-api-doc.yaml b/.github/workflows/publish-module-api-doc.yaml index 0e803cdbf835..1932141611c8 100644 --- a/.github/workflows/publish-module-api-doc.yaml +++ b/.github/workflows/publish-module-api-doc.yaml @@ -66,7 +66,7 @@ jobs: doxygen Doxyfile.API - name: Publish generated API documentation to GitHub Pages - uses: JamesIves/github-pages-deploy-action@v4.6.6 + uses: JamesIves/github-pages-deploy-action@v4.6.4 with: folder: doc/ if: github.ref == 'refs/heads/master'