-
Notifications
You must be signed in to change notification settings - Fork 8
42 lines (35 loc) · 1.17 KB
/
provide-docker-images.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
name: Provide needed docker images in ghcr.io
on:
workflow_dispatch:
push:
env:
REGISTRY_IMAGE: ghcr.io/novatecconsulting/opentelemetry-training
jobs:
retag_and_push:
name: Provide docker image ${{ matrix.image }} on ghcr.io
runs-on: [ubuntu-latest]
strategy:
matrix:
image:
- maeddes/todobackend-springboot:v2404
- maeddes/todoui-thymeleaf:v2404
- maeddes/todoui-flask:v2404
- maeddes/simple-generator:v2404
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Login to GitHub Container Registry
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Pull image from Docker Hub
run: |
docker pull docker.io/${{ matrix.image }}
- name: Retag the image for GitHub Container Registry
run: |
docker tag ${{ matrix.image }} ${{ env.REGISTRY_IMAGE }}-${{ matrix.image }}
- name: Push image to GitHub Container Registry
run: |
docker push ${{ env.REGISTRY_IMAGE }}-${{ matrix.image }}