ci: use repository owner instead of actor

This commit is contained in:
Job 2025-03-15 11:10:54 +00:00
parent 4bd0828cbc
commit 8caa62dc4e

@ -12,14 +12,14 @@ jobs:
- name: Build
uses: redhat-actions/buildah-build@v2
with:
image: ${{ github.actor }}/${{ github.event.repository.name }}
image: ${{ github.repository_owner }}/${{ github.event.repository.name }}
tags: latest
containerfiles: |
./Containerfile
- name: Push
uses: redhat-actions/push-to-registry@v2
with:
image: ${{ github.actor }}/${{ github.event.repository.name }}
image: ${{ github.repository_owner }}/${{ github.event.repository.name }}
tags: latest
registry: git.plabble.org
username: ${{ secrets.REGISTRY_USERNAME }}