From 3b53a791730dd254d7403d265283f9ff75de7b9e Mon Sep 17 00:00:00 2001 From: Abin Date: Tue, 6 Dec 2022 15:33:35 +0530 Subject: [PATCH] Test CI --- .github/workflows/auto-version-docs.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/auto-version-docs.yml b/.github/workflows/auto-version-docs.yml index ff5ecd7e5..f9e1339cc 100644 --- a/.github/workflows/auto-version-docs.yml +++ b/.github/workflows/auto-version-docs.yml @@ -1,7 +1,7 @@ name: Auto version docs on release on: push: - tags: ["v*.*.*"] + # tags: ["v*.*.*"] jobs: @@ -18,7 +18,9 @@ jobs: - name: Create new version of docs run: | set -xe - export VERSION="$(git describe --exact-match --tags $(git rev-parse HEAD))" + # export VERSION="$(git describe --exact-match --tags $(git rev-parse HEAD))" + export VERSION="testing" + npm ci npm run docusaurus docs:version "$VERSION" - name: Create Pull Request