From 594c09b0a7e2ae6ac80409ba3dea3a6abacb08e7 Mon Sep 17 00:00:00 2001 From: Paul Pan Date: Thu, 14 Mar 2024 13:00:07 +0800 Subject: [PATCH] chore: switch to quay.io --- .github/workflows/container.yml | 13 ++++--------- 1 file changed, 4 insertions(+), 9 deletions(-) diff --git a/.github/workflows/container.yml b/.github/workflows/container.yml index 97f98c3..0e26a08 100644 --- a/.github/workflows/container.yml +++ b/.github/workflows/container.yml @@ -3,6 +3,9 @@ on: [ push ] jobs: image: runs-on: ubuntu-latest + env: + DOCKER: podman + IMAGE_PREFIX: quay.io/ldcraft steps: - name: Maximize Build Space run: | @@ -29,7 +32,7 @@ jobs: - name: Login to Container Registry uses: redhat-actions/podman-login@v1 with: - registry: git.0x7f.app + registry: quay.io username: ${{ secrets.CONTAINER_USERNAME }} password: ${{ secrets.CONTAINER_PASSWORD }} - name: Write Sentry DSN @@ -38,17 +41,9 @@ jobs: SENTRY_DSN: ${{ secrets.SENTRY_DSN }} - name: Build Rootfs Image run: ./build_image.sh rootfs - env: - DOCKER: podman - name: Build Base Image run: ./build_image.sh base - env: - DOCKER: podman - name: Build Server Image run: ./build_image.sh server - env: - DOCKER: podman - name: Build Runner Image run: ./build_image.sh runner - env: - DOCKER: podman