Browse Source

chore: move sync action after npm release as it pushes some commits

Signed-off-by: mertmit <mertmit99@gmail.com>
pull/8608/head
mertmit 1 month ago
parent
commit
3b3a8213a1
  1. 10
      .github/workflows/release-nocodb.yml

10
.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]

Loading…
Cancel
Save