jellyfin-server-windows/.github/workflows/publish-stable.yaml
Anthony Lavado a21a3d18c6
Update publish-stable.yaml
Update CI URL
2024-05-11 15:45:19 -04:00

20 lines
611 B
YAML

name: 'Publish Stable'
on:
release:
types:
- "released"
workflow_dispatch:
inputs:
jellyfin_version:
required: true
type: string
description: "The Jellyfin version (eg: 10.8.0, 10.7.7)"
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/files/server/windows/latest-stable/amd64/jellyfin_{0}-amd64.zip', (github.event.release.tag_name || github.event.inputs.jellyfin_version)) }}