diff --git a/.forgejo/workflows/docker.yml b/.forgejo/workflows/docker.yml index 3b0020d..0a7c3c6 100644 --- a/.forgejo/workflows/docker.yml +++ b/.forgejo/workflows/docker.yml @@ -12,7 +12,9 @@ jobs: - name: Checkout Repo uses: actions/checkout@v4 - name: Install Podman - run: apt update && apt install -y podman + run: | + apt update && apt install -y podman + echo 'unqualified-search-registries=["docker.io"]' >> /etc/containers/registries.conf - name: Login to Forgejo Container Registry run: echo "${{ secrets.FORGEJO_TOKEN }}" | podman login ${{ forgejo.server_url }} -u ${{ forgejo.actor }} --password-stdin - name: Build image @@ -28,7 +30,9 @@ jobs: - name: Checkout Repo uses: actions/checkout@v4 - name: Install Podman - run: apt update && apt install -y podman + run: | + apt update && apt install -y podman + echo 'unqualified-search-registries=["docker.io"]' >> /etc/containers/registries.conf - name: Login to Forgejo Container Registry run: echo "${{ secrets.FORGEJO_TOKEN }}" | podman login ${{ forgejo.server_url }} -u ${{ forgejo.actor }} --password-stdin - name: Build image