From 47aeaea1c223d244c610508f2264c9ae8c9d3a9f Mon Sep 17 00:00:00 2001 From: vbalalian Date: Sun, 3 Mar 2024 14:02:16 -0800 Subject: [PATCH] refactor: match changed file path --- .github/workflows/deploy-custom-airbyte-connector.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/deploy-custom-airbyte-connector.yml b/.github/workflows/deploy-custom-airbyte-connector.yml index c8a4ff6..f56cc21 100644 --- a/.github/workflows/deploy-custom-airbyte-connector.yml +++ b/.github/workflows/deploy-custom-airbyte-connector.yml @@ -4,7 +4,7 @@ on: push: branches: [master] paths: - - 'custom-airbyte-connector/**' + - 'extract-load-transform/custom-airbyte-connector/**' jobs: deploy: @@ -24,7 +24,7 @@ jobs: - name: Build and Push Custom Airbyte Connector Image run: | - docker build -t ${{ secrets.DOCKER_HUB_USERNAME }}/roman-coins-data-pipeline:custom-airbyte-connector-${{ github.sha }} ./custom-airbyte-connector - docker build -t ${{ secrets.DOCKER_HUB_USERNAME }}/roman-coins-data-pipeline:custom-airbyte-connector-latest ./custom-airbyte-connector + docker build -t ${{ secrets.DOCKER_HUB_USERNAME }}/roman-coins-data-pipeline:custom-airbyte-connector-${{ github.sha }} ./extract-load-transform/custom-airbyte-connector + docker build -t ${{ secrets.DOCKER_HUB_USERNAME }}/roman-coins-data-pipeline:custom-airbyte-connector-latest ./extract-load-transform/custom-airbyte-connector docker push ${{ secrets.DOCKER_HUB_USERNAME }}/roman-coins-data-pipeline:custom-airbyte-connector-${{ github.sha }} docker push ${{ secrets.DOCKER_HUB_USERNAME }}/roman-coins-data-pipeline:custom-airbyte-connector-latest \ No newline at end of file