From 8ae338019abe597df49105ac808de38b9156212f Mon Sep 17 00:00:00 2001 From: Austin Sullivan Date: Fri, 21 Apr 2023 11:20:56 -0400 Subject: [PATCH 1/2] chore(CI): Removed dryrun flag --- packages/module/release.config.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/packages/module/release.config.js b/packages/module/release.config.js index fad10613..3cc6272f 100644 --- a/packages/module/release.config.js +++ b/packages/module/release.config.js @@ -9,6 +9,5 @@ module.exports = { '@semantic-release/github', '@semantic-release/npm' ], - tagFormat: 'prerelease-v${version}', - dryRun: true + tagFormat: 'prerelease-v${version}' }; From 9d79375566f3bc6a426388b9573ed934b034866c Mon Sep 17 00:00:00 2001 From: Austin Sullivan Date: Fri, 21 Apr 2023 11:21:08 -0400 Subject: [PATCH 2/2] chore(CI): Updated release action to only run docs updates on main --- .github/workflows/release.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 8390da9c..f3274aa3 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -8,6 +8,7 @@ jobs: call-build-lint-test-workflow: uses: ./.github/workflows/build-lint-test.yml build-typedocs: + if: github.ref == 'refs/heads/main' runs-on: ubuntu-latest needs: [call-build-lint-test-workflow] env: @@ -73,6 +74,7 @@ jobs: retention-days: 1 if-no-files-found: error deploy-typedocs: + if: github.ref == 'refs/heads/main' runs-on: ubuntu-latest needs: [call-build-lint-test-workflow, build-typedocs] permissions: