refact: update for jellyfin v10.10.x
This commit is contained in:
@@ -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
|
||||
@@ -0,0 +1,18 @@
|
||||
name: Whiskers Check
|
||||
|
||||
on:
|
||||
push:
|
||||
paths: ['template.tera', 'src', '.github/workflows/whiskers.yml']
|
||||
pull_request:
|
||||
workflow_dispatch:
|
||||
|
||||
jobs:
|
||||
check:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v4
|
||||
- uses: catppuccin/setup-whiskers@v1.0.0
|
||||
with:
|
||||
whiskers-version: '2.5.1'
|
||||
- run: whiskers template.tera --check
|
||||
Reference in New Issue
Block a user