-
Notifications
You must be signed in to change notification settings - Fork 0
104 lines (89 loc) · 3.14 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
name: Deploy code to AWS lambda
on:
push:
tags:
- "v*.*.*"
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
env:
POETRY_VERSION: 1.7.1
POETRY_EXPORT_VERSION: 1.6.0
POETRY_HOME: ~/.local/bin/
POETRY: ~/.local/bin/bin/poetry
steps:
- name: Git clone the repository
uses: actions/checkout@v4
###############################################
# Export requirements (cached)
###############################################
- name: Cache requirements
id: req-cache
uses: actions/cache@v3
with:
path: ${{ github.workspace }}/requirements.txt
key: requirements-${{ hashFiles('poetry.lock') }}
- name: Cache Poetry installation
id: poetry-cache
if: steps.req-cache.outputs.cache-hit != 'true'
uses: actions/cache@v3
with:
path: ~/.local/bin/
key: poetry-${{ env.POETRY_VERSION }}-${{ env.POETRY_EXPORT_VERSION }}
- name: Install Poetry
if: |
steps.req-cache.outputs.cache-hit != 'true' &&
steps.poetry-cache.outputs.cache-hit != 'true'
run: |
python3 -m venv $POETRY_HOME
$POETRY_HOME/bin/pip install poetry==$POETRY_VERSION
$POETRY self add poetry-plugin-export==$POETRY_EXPORT_VERSION
- name: Export requirements.txt
if: steps.req-cache.outputs.cache-hit != 'true'
run: |
$POETRY config warnings.export false
$POETRY export -f requirements.txt --output requirements.txt --without-hashes
###############################################
# AWS authentications
###############################################
- name: Configure aws credentials
uses: aws-actions/configure-aws-credentials@v4
with:
role-to-assume: ${{ secrets.IAM_ROLE_ARN }}
role-session-name: GitHub_to_AWS_via_FederatedOIDC
aws-region: "eu-west-3"
- name: Login to Amazon ECR
id: login-ecr
uses: aws-actions/amazon-ecr-login@v2
###############################################
# Build, push & deploy
###############################################
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Docker meta
id: meta
uses: docker/metadata-action@v5
env:
ECR_REGISTRY: ${{ steps.login-ecr.outputs.registry }}
with:
images: ${{ env.ECR_REGISTRY }}/inews
tags: latest
- name: Build and push
uses: docker/build-push-action@v5
with:
context: .
push: true
tags: ${{ steps.meta.outputs.tags }}
platforms: linux/amd64
cache-from: type=gha
cache-to: type=gha
- name: Update Lambda code
env:
ECR_REGISTRY: ${{ steps.login-ecr.outputs.registry }}
run: |
aws lambda update-function-code \
--function-name inews \
--image-uri $ECR_REGISTRY/inews:latest > /dev/null