From 40a8256edbec54b601142d3f03f222fb840e6a3e Mon Sep 17 00:00:00 2001 From: mertmit Date: Thu, 23 May 2024 15:45:50 +0300 Subject: [PATCH] chore: order of master to develop action 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 e907d9bdcd..b393cb9e34 100644 --- a/.github/workflows/release-nocodb.yml +++ b/.github/workflows/release-nocodb.yml @@ -59,6 +59,11 @@ 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: @@ -116,8 +121,3 @@ jobs: uses: ./.github/workflows/publish-docs.yml secrets: GH_TOKEN: "${{ secrets.GH_TOKEN }}" - - # Sync changes to develop - sync-to-develop: - needs: publish-docs - uses: ./.github/workflows/sync-to-develop.yml