From 5a3bec83d4b1f9f61e7859b3f190f94fc3f36a24 Mon Sep 17 00:00:00 2001 From: MaksimKiselev <4495801+MaksimKiselev@users.noreply.github.com> Date: Sun, 2 Nov 2025 01:21:05 +0300 Subject: [PATCH] fix: CI: move "Semantic release" step --- .github/workflows/handle-release-branch-push.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/handle-release-branch-push.yml b/.github/workflows/handle-release-branch-push.yml index aca30de0..1f7bcd3f 100644 --- a/.github/workflows/handle-release-branch-push.yml +++ b/.github/workflows/handle-release-branch-push.yml @@ -58,10 +58,6 @@ jobs: - name: Setup project uses: ./.github/actions/setup - - name: Build Project - run: npm run build - shell: bash - - name: Semantic release env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} @@ -71,6 +67,10 @@ jobs: echo "new_tag_version=${NEXT_TAG_VERSION}" >> $GITHUB_OUTPUT shell: bash + - name: Build Project + run: npm run build + shell: bash + - name: Publish to npm env: NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}