Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/jellyfin/commit/c4c7ced9480791a66395cd38ec2f177ded687c3b?style=split&whitespace=ignore-all You should set ROOT_URL correctly, otherwise the web may not work correctly.

Merge pull request from EraYaN/publish-ci-fault

Fix publish CI YAML parse error
pull/1765/head
Joshua M. Boniface 6 years ago committed by GitHub
commit c4c7ced948
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -13,7 +13,7 @@ jobs:
pool: pool:
vmImage: ubuntu-latest vmImage: ubuntu-latest
steps: steps:
- checkout: none
- task: DownloadPipelineArtifact@2 - task: DownloadPipelineArtifact@2
displayName: Download the Windows Setup Artifact displayName: Download the Windows Setup Artifact
inputs: inputs:
@ -29,9 +29,7 @@ jobs:
displayName: 'Create Drop directory' displayName: 'Create Drop directory'
inputs: inputs:
sshEndpoint: 'Jellyfin Build Server' sshEndpoint: 'Jellyfin Build Server'
commands: | commands: 'mkdir -p /srv/incoming/jellyfin_$(Version)/win-installer && ln -s /srv/incoming/jellyfin_$(Version) /srv/incoming/jellyfin_nightly_azure_upload'
mkdir -p /srv/incoming/jellyfin_$(Version)/win-installer
ln -s /srv/incoming/jellyfin_$(Version) /srv/incoming/jellyfin_nightly_azure_upload
- task: CopyFilesOverSSH@0 - task: CopyFilesOverSSH@0
displayName: 'Copy the Windows Setup to the Repo' displayName: 'Copy the Windows Setup to the Repo'

@ -15,7 +15,7 @@ jobs:
pool: pool:
vmImage: ubuntu-latest vmImage: ubuntu-latest
steps: steps:
- checkout: none
- task: DownloadPipelineArtifact@2 - task: DownloadPipelineArtifact@2
displayName: Download the Windows Setup Artifact displayName: Download the Windows Setup Artifact
inputs: inputs:
@ -31,9 +31,7 @@ jobs:
displayName: 'Create Drop directory' displayName: 'Create Drop directory'
inputs: inputs:
sshEndpoint: 'Jellyfin Build Server' sshEndpoint: 'Jellyfin Build Server'
commands: | commands: 'mkdir -p /srv/incoming/jellyfin_$(Version)/win-installer && ln -s /srv/incoming/jellyfin_$(Version) /srv/incoming/jellyfin_release_azure_upload'
mkdir -p /srv/incoming/jellyfin_$(Version)/win-installer
ln -s /srv/incoming/jellyfin_$(Version) /srv/incoming/jellyfin_nightly_azure_upload
- task: CopyFilesOverSSH@0 - task: CopyFilesOverSSH@0
displayName: 'Copy the Windows Setup to the Repo' displayName: 'Copy the Windows Setup to the Repo'
@ -41,10 +39,10 @@ jobs:
sshEndpoint: 'Jellyfin Build Server' sshEndpoint: 'Jellyfin Build Server'
sourceFolder: '$(System.ArtifactsDirectory)/win-installer' sourceFolder: '$(System.ArtifactsDirectory)/win-installer'
contents: 'jellyfin_*.exe' contents: 'jellyfin_*.exe'
targetFolder: '/srv/incoming/jellyfin_nightly_azure_upload/win-installer' targetFolder: '/srv/incoming/jellyfin_release_azure_upload/win-installer'
- task: SSH@0 - task: SSH@0
displayName: 'Clean up SCP symlink' displayName: 'Clean up SCP symlink'
inputs: inputs:
sshEndpoint: 'Jellyfin Build Server' sshEndpoint: 'Jellyfin Build Server'
commands: 'rm -f /srv/incoming/jellyfin_nightly_azure_upload' commands: 'rm -f /srv/incoming/jellyfin_release_azure_upload'

Loading…
Cancel
Save