From 306849f6196c21d4914127d54f6118577eb217fd Mon Sep 17 00:00:00 2001 From: Cody Robibero Date: Sun, 24 Mar 2024 17:40:47 -0600 Subject: [PATCH] update repo urls --- .github/workflows/publish-stable-pre.yaml | 19 ------------------- .github/workflows/publish-stable.yaml | 2 +- .github/workflows/publish-unstable.yaml | 2 +- 3 files changed, 2 insertions(+), 21 deletions(-) delete mode 100644 .github/workflows/publish-stable-pre.yaml diff --git a/.github/workflows/publish-stable-pre.yaml b/.github/workflows/publish-stable-pre.yaml deleted file mode 100644 index b389d0c..0000000 --- a/.github/workflows/publish-stable-pre.yaml +++ /dev/null @@ -1,19 +0,0 @@ -name: 'Publish Stable-Pre' - -on: - release: - types: - - "prereleased" - workflow_dispatch: - inputs: - jellyfin_version: - required: true - type: string - description: "The Jellyfin version (eg: 10.8.0-beta1, 10.8.0-beta2)" - -jobs: - publish: - uses: ./.github/workflows/_meta-publish.yaml - with: - jellyfin_version: ${{ github.event.release.tag_name || github.event.inputs.jellyfin_version }} - server_url: ${{ format('https://repo.jellyfin.org/releases/server/windows/stable-pre/{0}/combined/jellyfin_{0}.zip', (github.event.release.tag_name || github.event.inputs.jellyfin_version)) }} diff --git a/.github/workflows/publish-stable.yaml b/.github/workflows/publish-stable.yaml index 7fbbafc..1fa6ed9 100644 --- a/.github/workflows/publish-stable.yaml +++ b/.github/workflows/publish-stable.yaml @@ -16,4 +16,4 @@ jobs: uses: ./.github/workflows/_meta-publish.yaml with: jellyfin_version: ${{ github.event.release.tag_name || github.event.inputs.jellyfin_version }} - server_url: ${{ format('https://repo.jellyfin.org/releases/server/windows/stable/combined/jellyfin_{0}.zip', (github.event.release.tag_name || github.event.inputs.jellyfin_version)) }} + server_url: ${{ format('https://repo.jellyfin.org/files/server/windows/latest-stable/amd64/jellyfin_{0}.zip', (github.event.release.tag_name || github.event.inputs.jellyfin_version)) }} diff --git a/.github/workflows/publish-unstable.yaml b/.github/workflows/publish-unstable.yaml index 7465b03..f86162b 100644 --- a/.github/workflows/publish-unstable.yaml +++ b/.github/workflows/publish-unstable.yaml @@ -13,4 +13,4 @@ jobs: uses: ./.github/workflows/_meta-publish.yaml with: jellyfin_version: ${{ github.event.inputs.jellyfin_version }} - server_url: ${{ format('https://repo.jellyfin.org/releases/server/windows/versions/unstable/combined/{0}/jellyfin_{0}-unstable.zip', github.event.inputs.jellyfin_version) }} + server_url: ${{ format('https://repo.jellyfin.org/files/server/windows/latest-unstable/amd64/jellyfin_{0}-amd64.zip', github.event.inputs.jellyfin_version) }}