From a0a3df145f17bb9fc466e6be97479e6755202db1 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Fri, 2 Jul 2021 17:22:49 +0800 Subject: [PATCH] disable the GHA for building images since we are not using it yet --- .github/workflows/{image.yml => image.yml-Disabled} | 1 + 1 file changed, 1 insertion(+) rename .github/workflows/{image.yml => image.yml-Disabled} (89%) diff --git a/.github/workflows/image.yml b/.github/workflows/image.yml-Disabled similarity index 89% rename from .github/workflows/image.yml rename to .github/workflows/image.yml-Disabled index 71c917fd..0110e558 100644 --- a/.github/workflows/image.yml +++ b/.github/workflows/image.yml-Disabled @@ -20,6 +20,7 @@ jobs: - name: Build image run: | IMAGE_ID=docker.pkg.github.com/${{ github.repository }}/build:${GITHUB_REF#refs/heads/} + #IMAGE_ID=${{ github.repository }}:${GITHUB_REF#refs/heads/} docker build . -f Dockerfile --tag $IMAGE_ID docker push $IMAGE_ID echo Pushed new build image $IMAGE_ID