From 167d67bf87d1b6177b528f2d38b861da7f156f0e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mathieu=20Dupr=C3=A9?= Date: Thu, 6 Feb 2025 16:47:51 +0100 Subject: [PATCH] cqfd: use prebuilt image for cqfd MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This commit updates the .cqfdrc file to use the prebuilt Docker image from the SEAPATH GitHub Container Registry. This image is built from the Dockerfile in the cqfd directory. To update the image you have to create a GitHub token with delete:packages, repo, write:packages permissions in the Developer Settings of your GitHub account. Then you can run the following commands: ```bash docker login ghcr.io # Use your GitHub username and the token as password cqfd init docker push ghcr.io/seapath/ansible_cqfd:v1.1.0 docker tag ghcr.io/seapath/ansible_cqfd:v1.1.0 ghcr.io/seapath/ansible_cqfd:latest docker push ghcr.io/seapath/ansible_cqfd:latest ``` Signed-off-by: Mathieu Dupré --- .cqfdrc | 1 + 1 file changed, 1 insertion(+) diff --git a/.cqfdrc b/.cqfdrc index 5fb7d7fea..4a1bdd5f3 100644 --- a/.cqfdrc +++ b/.cqfdrc @@ -2,6 +2,7 @@ org='seapath' name='ansible' flavors='prepare manual module_documentation ansible-lint export' +custom_img_name=ghcr.io/seapath/ansible_cqfd:v1.1.0 [build] command='check_yaml && ansible-lint -c ansible-lint.conf'