From b4bccf4582b99c4602b64cb0c3a028ef07af2884 Mon Sep 17 00:00:00 2001 From: Adalbert Makarovych Date: Tue, 3 Sep 2024 12:33:42 +0300 Subject: [PATCH] Fixed release workflow --- .github/workflows/docker.yml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/workflows/docker.yml b/.github/workflows/docker.yml index 86802e9..6915634 100644 --- a/.github/workflows/docker.yml +++ b/.github/workflows/docker.yml @@ -131,8 +131,7 @@ jobs: GH_TOKEN: ${{ secrets.PAT_TOKEN }} run: | # Clone ndc-hub repository - git clone https://github.com/hasura/ndc-hub.git - cd ndc-hub + git clone https://github.com/AdalbertMemSQL/ndc-hub.git # Create a new branch NEW_BRANCH="update-${{ env.CONNECTOR_NAME }}-connector-v${{ steps.get-version.outputs.tagged_version }}" @@ -187,7 +186,7 @@ jobs: git commit -m "Update ${{ env.CONNECTOR_NAME }} connector metadata to version ${{ steps.get-version.outputs.tagged_version }}" # Push changes - git push https://${{ secrets.PAT_TOKEN }}@github.com/hasura/ndc-hub.git HEAD:update-${{ env.CONNECTOR_NAME }}-connector-v${{ steps.get-version.outputs.tagged_version }} + git push https://${{ secrets.PAT_TOKEN }}@github.com/AdalbertMemSQL/ndc-hub.git HEAD:update-${{ env.CONNECTOR_NAME }}-connector-v${{ steps.get-version.outputs.tagged_version }} # Create PR using GitHub CLI