diff --git a/.forgejo/workflows/publish.yaml b/.forgejo/workflows/publish.yaml index 218cd54..4704696 100644 --- a/.forgejo/workflows/publish.yaml +++ b/.forgejo/workflows/publish.yaml @@ -38,13 +38,14 @@ jobs: strategy: *strategy steps: - name: login to container registry - uses: https://code.forgejo.org/docker/login-action@v2 + uses: redhat-actions/podman-login@v1 with: registry: git.flyinggecko.org username: flyinggecko password: ${{ secrets.REGISTRY_TOKEN }} - name: publish image - env: - IMAGE: git.flyinggecko.org/flyinggecko/oci-images/${{ matrix.container }}:${{ matrix.version }} - run: | - docker push "${IMAGE}" + uses: redhat-actions/push-to-registry@v2 + with: + image: git.flyinggecko.org/flyinggecko/oci-images/${{ matrix.container }} + tags: ${{ matrix.version }} + registry: git.flyinggecko.org