6
6
push :
7
7
branches :
8
8
- master
9
+
9
10
jobs :
10
11
docker :
12
+ permissions :
13
+ contents : read
14
+ packages : write
11
15
runs-on : ubuntu-latest
12
16
steps :
13
17
- name : Checkout code
21
25
22
26
- name : Cache docker layers
23
27
if : ${{ !env.ACT }}
24
- uses : actions/cache@v3
28
+ uses : actions/cache@v4
25
29
id : cache
26
30
with :
27
31
path : /tmp/.buildx-cache
@@ -30,20 +34,22 @@ jobs:
30
34
${{ runner.os }}-buildx-${{ matrix.service }}
31
35
${{ runner.os }}-buildx-
32
36
33
- - name : Prepare version number
34
- id : prepare
35
- run : |
36
- VERSION=$(git describe --always --tags)
37
- if [ "${{ github.event_name }}" = "release" ]; then
38
- TAGS="mcuadros/ofelia:$VERSION,mcuadros/ofelia:latest"
39
- # Replace with below once @mcuadros adds the DOCKER_USERNAME secret
40
- #TAGS="${{secrets.DOCKER_USERNAME}}/ofelia:$VERSION,${{secrets.DOCKER_USERNAME}}/ofelia:latest"
41
- else
42
- TAGS="mcuadros/ofelia:$VERSION,mcuadros/ofelia:development"
43
- # Replace with below once @mcuadros adds the DOCKER_USERNAME secret
44
- #TAGS="${{secrets.DOCKER_USERNAME}}/ofelia:$VERSION,${{secrets.DOCKER_USERNAME}}/ofelia:development"
45
- fi
46
- echo ::set-output name=tags::${TAGS}
37
+ - name : Docker meta
38
+ id : meta
39
+ uses : docker/metadata-action@v5
40
+ with :
41
+ # list of Docker images to use as base name for tags
42
+ images : |
43
+ mcuadros/ofelia
44
+ ghcr.io/${{ github.repository }}
45
+ flavor : |
46
+ latest=false
47
+ tags : |
48
+ type=raw,value=development,enable=${{ github.event_name != 'release' }}
49
+ type=raw,value=latest,enable=${{ github.event_name == 'release' }}
50
+ type=semver,pattern={{version}}
51
+ type=semver,pattern={{major}}.{{minor}}
52
+ type=sha,enable=true,priority=100,prefix=,suffix=,format=short
47
53
48
54
- name : Login to DockerHub
49
55
uses : docker/login-action@v3
@@ -53,25 +59,22 @@ jobs:
53
59
# username: ${{ secrets.DOCKER_USERNAME }}
54
60
password : ${{ secrets.DOCKER_PASSWORD }}
55
61
62
+ - name : Login to GHCR
63
+ uses : docker/login-action@v3
64
+ with :
65
+ registry : ghcr.io
66
+ username : ${{ github.actor }}
67
+ password : ${{ secrets.GITHUB_TOKEN }}
68
+
56
69
- name : Build the Docker image and push
57
70
uses : docker/build-push-action@v5
58
71
with :
59
72
platforms : linux/386,linux/amd64,linux/arm/v6,linux/arm/v7,linux/arm64
60
73
push : true
61
- tags : ${{ steps.prepare.outputs.tags }}
74
+ tags : ${{ steps.meta.outputs.tags }}
75
+ labels : ${{ steps.meta.outputs.labels }}
62
76
build-args : |
63
- VERSION=${{ steps.prepare.outputs.version }}
64
- BUILD_DATE=${{ steps.prepare.outputs.created }}
65
77
GIT_REF=${{ github.sha }}
66
- labels : |
67
- org.opencontainers.image.title=${{ matrix.service }}
68
- org.opencontainers.image.description=Ofelia - a job scheduler
69
- org.opencontainers.image.url=${{ github.event.repository.html_url }}
70
- org.opencontainers.image.source=${{ github.event.repository.clone_url }}
71
- org.opencontainers.image.version=${{ steps.prepare.outputs.version }}
72
- org.opencontainers.image.created=${{ steps.prepare.outputs.created }}
73
- org.opencontainers.image.revision=${{ github.sha }}
74
- org.opencontainers.image.licenses=${{ github.event.repository.license.spdx_id }}
75
- cache-from: type=local,src=/tmp/.buildx-cache
76
- cache-to: type=local,dest=/tmp/.buildx-cache
78
+ cache-from : type=local,src=/tmp/.buildx-cache
79
+ cache-to : type=local,dest=/tmp/.buildx-cache
77
80
0 commit comments