From 3c16698615b2477785f3078cf939b900c0624fb9 Mon Sep 17 00:00:00 2001 From: Rares Istoc Date: Thu, 21 Mar 2024 21:12:28 +0200 Subject: [PATCH] Modify docker path --- .github/workflows/crawler.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/crawler.yml b/.github/workflows/crawler.yml index a7ba092..b9f875d 100644 --- a/.github/workflows/crawler.yml +++ b/.github/workflows/crawler.yml @@ -4,7 +4,7 @@ on: [pull_request] jobs: build: - name: Build & Push Crawler Lambda + name: Build & Push Docker Image runs-on: ubuntu-latest outputs: ecr_repository: ${{ steps.login-ecr.outputs.registry }} @@ -27,8 +27,8 @@ jobs: id: build-image uses: docker/build-push-action@v4 with: - context: ./module1 - file: ./module1/.docker/Dockerfile.github + context: ./course/module1 + file: ./course/module1/Dockerfile target: release tags: | ${{ steps.login-ecr.outputs.registry }}/github:${{ github.sha }} @@ -36,7 +36,7 @@ jobs: push: true deploy: - name: Deploy Crawler Lambda + name: Deploy Crawler runs-on: ubuntu-latest needs: build