Skip to content

Merge pull request #8 from Dorianteffo/dev #1

Merge pull request #8 from Dorianteffo/dev

Merge pull request #8 from Dorianteffo/dev #1

Workflow file for this run

name: CD
on:
push:
branches:
- master
jobs:
push_docker_image:

Check failure on line 10 in .github/workflows/cd.yml

View workflow run for this annotation

GitHub Actions / CD

Invalid workflow file

The workflow is not valid. .github/workflows/cd.yml (Line: 10, Col: 5): The workflow must contain at least one job with no dependencies.
runs-on: ubuntu-latest
needs: [ci_job]
steps:
- name: checkout repo
uses: actions/checkout@v2
- name: Configure AWS credentials
uses: aws-actions/configure-aws-credentials@v4
with:
aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }}
aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
aws-region: eu-west-3
- name: Login to Amazon ECR
id: login-ecr
uses: aws-actions/amazon-ecr-login@v2
- name: Build, tag, and push docker image to Amazon ECR
env:
REGISTRY: ${{ steps.login-ecr.outputs.registry }}
REPOSITORY: ecr-repo-lambda
IMAGE_TAG: ${{ github.sha }}
run: |
cd extract_api_data
docker build -t $REGISTRY/$REPOSITORY:$IMAGE_TAG .
docker push $REGISTRY/$REPOSITORY:$IMAGE_TAG
aws lambda update-function-code \
--function-name test-lambda \
--image-uri $REGISTRY/$REPOSITORY:$IMAGE_TAG