From d6101dc0a3a875faaec5620a7357b1302092f705 Mon Sep 17 00:00:00 2001 From: Oleg Kalachev Date: Wed, 12 Apr 2023 01:34:34 +0300 Subject: [PATCH] ci: add secret variable to temporarily freeze updating docs website --- .github/workflows/docs.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml index e819c4e3..ec0402ab 100644 --- a/.github/workflows/docs.yml +++ b/.github/workflows/docs.yml @@ -81,5 +81,8 @@ jobs: needs: docs steps: - name: Deploy to GitHub Pages + env: + FREEZE_DOCS: ${{ secrets.FREEZE_DOCS }} + if: ${{ !env.FREEZE_DOCS }} id: deployment uses: actions/deploy-pages@v1