Skip to content

Commit d79c0b2

Browse files
authored
Fix ghcr build (#202), use docker/metadata-action
* Use "docker/metadata-action" for labels/tags generation * Fix ghcr login and push
1 parent 012d882 commit d79c0b2

File tree

2 files changed

+32
-61
lines changed

2 files changed

+32
-61
lines changed

.github/workflows/docker.yml

+32-29
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,12 @@ on:
66
push:
77
branches:
88
- master
9+
910
jobs:
1011
docker:
12+
permissions:
13+
contents: read
14+
packages: write
1115
runs-on: ubuntu-latest
1216
steps:
1317
- name: Checkout code
@@ -21,7 +25,7 @@ jobs:
2125

2226
- name: Cache docker layers
2327
if: ${{ !env.ACT }}
24-
uses: actions/cache@v3
28+
uses: actions/cache@v4
2529
id: cache
2630
with:
2731
path: /tmp/.buildx-cache
@@ -30,20 +34,22 @@ jobs:
3034
${{ runner.os }}-buildx-${{ matrix.service }}
3135
${{ runner.os }}-buildx-
3236
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
4753
4854
- name: Login to DockerHub
4955
uses: docker/login-action@v3
@@ -53,25 +59,22 @@ jobs:
5359
# username: ${{ secrets.DOCKER_USERNAME }}
5460
password: ${{ secrets.DOCKER_PASSWORD }}
5561

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+
5669
- name: Build the Docker image and push
5770
uses: docker/build-push-action@v5
5871
with:
5972
platforms: linux/386,linux/amd64,linux/arm/v6,linux/arm/v7,linux/arm64
6073
push: true
61-
tags: ${{ steps.prepare.outputs.tags }}
74+
tags: ${{ steps.meta.outputs.tags }}
75+
labels: ${{ steps.meta.outputs.labels }}
6276
build-args: |
63-
VERSION=${{ steps.prepare.outputs.version }}
64-
BUILD_DATE=${{ steps.prepare.outputs.created }}
6577
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
7780

.github/workflows/ghcr.yml_broken_credentials

-32
This file was deleted.

0 commit comments

Comments
 (0)