Skip to content

Commit

Permalink
feat(packages): Add Jellyfin Web
Browse files Browse the repository at this point in the history
Signed-off-by: RJ Sampson <rj.sampson@chainguard.dev>
  • Loading branch information
EyeCantCU committed Mar 15, 2024
1 parent 659c669 commit b2a0589
Showing 1 changed file with 46 additions and 0 deletions.
46 changes: 46 additions & 0 deletions jellyfin-web.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
package:
name: jellyfin-web
version: 10.8.13
epoch: 0
description: Web Client for Jellyfin
copyright:
- license: GPL-2.0-only
dependencies:
runtime:
- jellyfin
- nodejs

environment:
contents:
packages:
- busybox
- jellyfin
- nodejs
- npm

pipeline:
- uses: git-checkout
with:
repository: https://github.com/jellyfin/jellyfin-web
tag: v${{package.version}}
expected-commit: 8e37078b6066715b27fd2dde1f7d1eda216044d9

- runs: |
npm ci --no-audit --unsafe-perm
npm run build:production
mkdir -p "${{targets.destdir}}"/usr/lib/jellyfin/jellyfin-web
cp -r dist/* "${{targets.destdir}}"/usr/lib/jellyfin/jellyfin-web
- uses: strip

update:
enabled: true
ignore-regex-patterns:
- '.*alpha.*'
- '.*beta.*'
- '.*rc.*'
github:
identifier: jellyfin/jellyfin-web
use-tag: true
strip-prefix: v

0 comments on commit b2a0589

Please sign in to comment.