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