-
Notifications
You must be signed in to change notification settings - Fork 0
43 lines (41 loc) · 1.44 KB
/
deploy.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
name: Connect to AWS role, build and push to ECR
on:
push:
branches: [ main ]
tags:
- "v*.*.*"
pull_request:
branches: [ main ]
permissions:
id-token: write # This is required for requesting the JWT
contents: read # This is required for actions/checkout
jobs:
Deploy:
runs-on: ubuntu-latest
steps:
- name: Git clone the repository
uses: actions/checkout@v4
- name: Install poetry & poetry export
run: |
pipx install poetry
pipx inject poetry poetry-plugin-export
- name: Cache poetry
uses: actions/setup-python@v4
with:
python-version: '3.10'
cache: 'poetry'
- name: Export requirements.txt
run: poetry export -f requirements.txt --output requirements.txt --without-hashes
- name: Configure aws credentials
uses: aws-actions/[email protected]
with:
role-to-assume: ${{ secrets.IAM_ROLE_ARN }}
role-session-name: GitHub_to_AWS_via_FederatedOIDC
aws-region: "eu-west-3"
- name: Build, tag, and push image to Amazon ECR
run: |
docker build --platform linux/amd64 -t ${{ secrets.ECR_REGISTRY }}/inews:latest .
docker push ${{ secrets.ECR_REGISTRY }}/inews:latest
aws lambda update-function-code \
--function-name inews \
--image-uri ${{ secrets.ECR_REGISTRY }}/inews:latest > /dev/null