-
Notifications
You must be signed in to change notification settings - Fork 0
56 lines (49 loc) · 1.51 KB
/
container-api.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
name: "Building the API container image"
env:
NAME: "vdi-api-openstack"
REGISTRY: ghcr.io/alexthegeek
on:
push:
branches:
- main
# Authorise :
# - Accès en lecture seule au contenu du dépôt Git
# - Accès en lecture/écriture au "packages" pour avoir l'accès au registre de
# conteneurs de GitHub
permissions:
contents: read
packages: write
jobs:
build-push-image:
runs-on: ubuntu-latest
steps:
# Récupération du dépôt Git
- name: Checkout repo
uses: actions/checkout@v4
# Construction de l'image de conteneur avec buildah
- name: Build container image
uses: redhat-actions/buildah-build@v2
with:
image: ${{ env.NAME }}
context: Docker/API
tags: latest
containerfiles: Docker/API/Dockerfile
layers: false
oci: true
# Publication de l'image de conteneur dans le regsitre de GitHub avec podman
- name: Push to Container Registry
uses: redhat-actions/push-to-registry@v2
id: push
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
image: ${{ env.NAME }}
tags: latest
# Authentification au registre de conteneur de GitHub
- name: Login to Container Registry
uses: redhat-actions/podman-login@v1
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}