Workaround for Repo Owner GitHub Action

GitHub Container Registry requires lowercase repo names. Since mine is `Xonshiz`, the deployment fails. Adding a lower case name `xonshiz` in secrets should suffice for now.
This commit is contained in:
Dhruv Kanojia (Xonshiz) 2022-04-10 13:56:42 +05:30
parent 6dbc3bcec4
commit b75d2adea4

View File

@ -45,7 +45,7 @@ jobs:
platform_linux_amd64_enabled: true
platform_linux_i386_enabled: false
push_enabled: true
ghcr_repo_owner: ${{ github.repository_owner }}
ghcr_repo_owner: ${{ secrets.REPOSITORY_OWNER }}
ghcr_repo: ${{ github.repository }}
secrets:
ghcr_token: ${{ secrets.GITHUB_TOKEN }}