refact: update for jellyfin v10.10.x

This commit is contained in:
Adam Perkowski
2025-03-01 16:17:35 +01:00
parent d1ed82fccc
commit 5b130af094
10 changed files with 514 additions and 884 deletions
+41
View File
@@ -0,0 +1,41 @@
name: Deploy to GitHub Pages
on:
push:
tags:
- '*'
workflow_dispatch:
permissions:
contents: read
pages: write
id-token: write
concurrency:
group: 'pages'
cancel-in-progress: false
jobs:
deploy:
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Pages
uses: actions/configure-pages@v5
- name: Prepare files
run: |
mkdir -p build
cp src/*.css build
cd build
sed -i 's/\[URL\]/https:\/\/adamperkowski.github.io\/jellyfin/g' *.css
- name: Upload artifact
uses: actions/upload-pages-artifact@v3
with:
path: build
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4