From 3b3a8213a1c1a7e2dd2c95bbff85725c08104104 Mon Sep 17 00:00:00 2001 From: mertmit Date: Wed, 29 May 2024 13:54:54 +0300 Subject: [PATCH] chore: move sync action after npm release as it pushes some commits Signed-off-by: mertmit --- .github/workflows/release-nocodb.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/release-nocodb.yml b/.github/workflows/release-nocodb.yml index b393cb9e34..bd0ffb4962 100644 --- a/.github/workflows/release-nocodb.yml +++ b/.github/workflows/release-nocodb.yml @@ -59,11 +59,6 @@ jobs: with: tag: ${{ needs.process-input.outputs.target_tag }} targetEnv: ${{ github.event.inputs.targetEnv || 'PROD' }} - - # Create a PR to sync changes back to develop branch from master - sync-to-develop: - needs: [pr-to-master, process-input] - uses: ./.github/workflows/sync-to-develop.yml # Build, install, publish frontend and backend to npm release-npm: @@ -75,6 +70,11 @@ jobs: secrets: NPM_TOKEN: "${{ secrets.NPM_TOKEN }}" + # Create a PR to sync changes back to develop branch from master + sync-to-develop: + needs: [release-npm, process-input] + uses: ./.github/workflows/sync-to-develop.yml + # Draft Release Note release-draft-note: needs: [release-npm, process-input]