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]