From c2c7945af974af06dab1ed72806ea080abdc5ca1 Mon Sep 17 00:00:00 2001 From: ruuushhh Date: Thu, 9 May 2024 17:02:03 +0530 Subject: [PATCH] move-integrations-inside-staging --- .github/workflows/staging_deployment.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/staging_deployment.yaml b/.github/workflows/staging_deployment.yaml index 6d9e370..5b73a87 100644 --- a/.github/workflows/staging_deployment.yaml +++ b/.github/workflows/staging_deployment.yaml @@ -40,7 +40,7 @@ jobs: - name: Update Image Tag run: | NEW_TAG="v$(git rev-parse --short HEAD)" - cd ${{ vars.STAGING_DEPLOY_REPO }}/${{ vars.STAGING_DEPLOY_DIR }}/integrations + cd ${{ vars.STAGING_DEPLOY_REPO }}/${{ vars.STAGING_DEPLOY_DIR }}/staging/integrations kustomize edit set image docker.io/${{ secrets.DOCKERHUB_USERNAME }}/fyle_slack-app=docker.io/${{ secrets.DOCKERHUB_USERNAME }}/fyle_slack-app:$NEW_TAG - name: Commit and push changes @@ -49,6 +49,6 @@ jobs: git config --global user.email "integrations@fylehq.com" git config --global user.name "GitHub Actions" git add . - git commit -m "Update image tag" + git commit -m "Deployed slack-app:$NEW_TAG to staging" git remote set-url origin https://x-access-token:${{ secrets.DEPLOY_GIT_ACCESS_TOKEN }}@github.com/${{ vars.STAGING_DEPLOY_REPO }} git push origin master