diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 3ec8e0671d..129cecd9d9 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -41,19 +41,3 @@ jobs: - name: Publish static assets to S3 run: | aws s3 cp frontend/build s3://getunleash-static/unleash/${{ steps.get_version.outputs.VERSION }} --recursive - - name: Trigger sync - uses: actions/github-script@v6 - with: - github-token: ${{ secrets.UNLEASH_CI_BUILDER_GITHUB_TOKEN }} - script: | - await github.rest.actions.createWorkflowDispatch({ - owner: 'ivarconr', - repo: 'unleash-enterprise', - workflow_id: 'cicd.yaml', - ref: 'master', - inputs: { - commit: "${{ github.event.head_commit.id }}", - actor: "${{ github.actor }}", - message: ${{ toJSON(github.event.head_commit.message) }}, - } - })