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