github docker image push denied: permission_denied: write_package
Getting github error message and this reall "shed" light into the error :D denied: permission_denied: write_package Then i notice the build pipeline using this docker image and hence the error. #18 naming to ghcr.io/kepungnzai/dot-net-gw:dac4bad done So github is actually expecting ghrc + user name + repository name + your image name Example of pipeline name : Build and Deploy Azure Function on : push : branches : - main workflow_dispatch : env : AZURE_FUNCTIONAPP_NAME : ' your-function-app-name ' # set this to your function app name on Azure CONTAINER_REGISTRY : ghcr.io IMAGE_NAME : ${{ github.repository }}/dotnetgw jobs : build-and-deploy : runs-on : ubuntu-latest permissions : contents : read packages : write steps : - name : ' Checkout GitHub Action ' ...