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

Signed-off-by: mertmit <mertmit99@gmail.com>
This commit is contained in:
mertmit
2024-05-29 13:29:03 +03:00
parent 58a9a27afd
commit c0a9c4e969

View File

@@ -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]