Skip to content

Commit

Permalink
Modify docker path
Browse files Browse the repository at this point in the history
  • Loading branch information
rsergiuistoc committed Mar 21, 2024
1 parent 29cf793 commit 3c16698
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/crawler.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
Expand All @@ -27,16 +27,16 @@ 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 }}
${{ steps.login-ecr.outputs.registry }}/github:latest
push: true

deploy:
name: Deploy Crawler Lambda
name: Deploy Crawler
runs-on: ubuntu-latest
needs: build

Expand Down

0 comments on commit 3c16698

Please sign in to comment.