From 99a959b1f17eaab509b1a5479d3777a3999a6394 Mon Sep 17 00:00:00 2001 From: Tamimi Ahmad Date: Thu, 22 Feb 2024 15:23:39 -0800 Subject: [PATCH] Update release.yml Make and Publish docs regardless if there is changeset --- .github/workflows/release.yml | 5 ----- 1 file changed, 5 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 3f0351b6a..dc7ba27cc 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -66,12 +66,10 @@ jobs: NPM_TOKEN: ${{ secrets.NPM_TOKEN }} - name: Make Docs - if: steps.changesets.outputs.published == 'true' run: | ./docs/make.sh - name: Publish Docs - if: steps.changesets.outputs.published == 'true' run: | git fetch origin gh-pages git worktree add gh-pages gh-pages @@ -84,6 +82,3 @@ jobs: git commit --allow-empty -F ../generated.txt # git push -f -u origin gh-pages git push -u origin gh-pages - -### -# The End.