-
Notifications
You must be signed in to change notification settings - Fork 7
45 lines (40 loc) · 1.25 KB
/
cd-backend.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
name: Déploiement à la demande du backend
run-name: Déploiement du backend sur ${{ github.event.inputs.target }}
on:
workflow_dispatch:
inputs:
target:
type: choice
description: Quel environnement ?
options:
- preprod
- prod
jobs:
build-backend:
name: Build le backend
environment: ${{ github.event.inputs.target }}
runs-on: ubuntu-latest
timeout-minutes: 20
steps:
- uses: actions/checkout@v4
with:
ref: ${{ github.event.pull_request.head.sha }}
fetch-depth: 0
- uses: earthly/actions/setup-earthly@v1
with:
version: v0.7.20
- name: Login into registry
run: earthly --use-inline-cache +docker-dev-login --GH_USER=${{ secrets.GH_USER }} --GH_TOKEN=${{ secrets.GH_TOKEN }}
- name: Build and push front deps image
run: >
earthly
--use-inline-cache --save-inline-cache --push
--platform=linux/amd64
+front-deps-builder
- name: Build and push backend image
run: >
earthly
--use-inline-cache --save-inline-cache --push
--platform=linux/amd64
+backend-build
--ENV_NAME=${{ github.event.inputs.target }}