fix: actions needs ghcr.io
This commit is contained in:
parent
5c0b823c12
commit
224621d9a5
2
.github/workflows/publish.yaml
vendored
2
.github/workflows/publish.yaml
vendored
@ -21,7 +21,7 @@ jobs:
|
|||||||
- name: Log in to Docker Hub
|
- name: Log in to Docker Hub
|
||||||
uses: docker/login-action@v3
|
uses: docker/login-action@v3
|
||||||
with:
|
with:
|
||||||
registry: ${{ env.REGISTRY }}
|
registry: ghcr.io
|
||||||
username: ${{ github.actor }}
|
username: ${{ github.actor }}
|
||||||
password: ${{ secrets.GITHUB_TOKEN }}
|
password: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
|
||||||
|
|||||||
@ -1,18 +1,13 @@
|
|||||||
import { useLoaderData } from '@remix-run/react'
|
import { CubeTransparentIcon } from '@heroicons/react/24/outline'
|
||||||
|
|
||||||
import { getConfig } from '~/utils/config'
|
|
||||||
|
|
||||||
export async function loader() {
|
|
||||||
const config = await getConfig()
|
|
||||||
return config
|
|
||||||
}
|
|
||||||
|
|
||||||
export default function Page() {
|
export default function Page() {
|
||||||
const data = useLoaderData<typeof loader>()
|
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div>
|
<div className='w-96 mx-auto flex flex-col justify-center items-center text-center'>
|
||||||
{JSON.stringify(data, null, 4)}
|
<CubeTransparentIcon className='w-32 h-32 text-gray-500'/>
|
||||||
|
<p className='text-lg mt-8'>
|
||||||
|
The settings page is currently unavailable.
|
||||||
|
It will be available in a future release.
|
||||||
|
</p>
|
||||||
</div>
|
</div>
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user