Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/overseerr/commit/baa62b286d20c131217b985a18be6009b5d98b73
You should set ROOT_URL correctly, otherwise the web may not work correctly.
1 changed files with
25 additions and
7 deletions
@ -29,13 +29,31 @@ jobs:
if : github.ref == 'refs/heads/develop' && !contains(github.event.head_commit.message, 'skip ci')
runs-on : ubuntu-latest
steps:
- name : c heckout
- name : C heckout
uses : actions/checkout@v2
- name : Build and push to Docker Hub
uses : docker/build-push-action@v1
- name : Set up QEMU
uses : docker/setup-qemu-action@v1
- name : Set up Docker Buildx
uses : docker/setup-buildx-action@v1
- name : Login to DockerHub
uses : docker/login-action@v1
with:
username : ${{ secrets.DOCKER_USERNAME }}
password : ${{ secrets.DOCKER_PASSWORD }}
repository : sctx/overseerr
build_args : COMMIT_TAG=${{ github.sha }}
tags : develop
password : ${{ secrets.DOCKER_TOKEN }}
- name : Login to GitHub Container Registry
uses : docker/login-action@v1
with:
registry : ghcr.io
username : ${{ github.repository_owner }}
password : ${{ secrets.CR_PAT }}
- name : Build and push
uses : docker/build-push-action@v2
with:
context : .
file : ./Dockerfile
push : true
tags : |
sctx/overseerr:develop
sctx/overseerr:${{ github.sha }}
ghcr.io/sctx/overseerr:develop
ghcr.io/sctx/overseerr:${{ github.sha }}