Skip to content

Commit

Permalink
fix version number
Browse files Browse the repository at this point in the history
  • Loading branch information
mrhotio committed May 20, 2024
1 parent 7f4c20e commit 78695db
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion VERSION.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,5 @@
"upstream_digest_arm64": "sha256:235805ced73aee36bde6df44022643f1192218ae4a82c2b9d13d643810b87db1",
"upstream_image": "ghcr.io/hotio/base",
"upstream_tag": "jammyvpn",
"version": "10.9.2+ubu2204"
"version": "10.9.2"
}
2 changes: 1 addition & 1 deletion linux-amd64.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ RUN apt update && \
apt update && \
apt install -y --no-install-recommends --no-install-suggests \
ocl-icd-libopencl1 \
jellyfin-server=${VERSION} \
jellyfin-server=${VERSION}+ubu2204 \
jellyfin-web \
jellyfin-ffmpeg6 && \
# clean up
Expand Down
2 changes: 1 addition & 1 deletion linux-arm64.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ RUN apt update && \
echo "deb [arch=arm64] https://repo.jellyfin.org/ubuntu jammy main" | tee /etc/apt/sources.list.d/jellyfin.list && \
apt update && \
apt install -y --no-install-recommends --no-install-suggests \
jellyfin-server=${VERSION} \
jellyfin-server=${VERSION}+ubu2204 \
jellyfin-web \
jellyfin-ffmpeg6 && \
# clean up
Expand Down
2 changes: 1 addition & 1 deletion update-versions.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/bin/bash
version=$(curl -fsSL "https://repo.jellyfin.org/ubuntu/dists/jammy/main/binary-amd64/Packages" | grep -A 7 -m 1 'Package: jellyfin-server') || exit 1
version=$(awk -F ': ' '/Version/{print $2;exit}' <<< "${version}")
version=$(awk -F ': ' '/Version/{print $2;exit}' <<< "${version}" | sed s/+.*//g)
intel_cr_version=$(curl -u "${GITHUB_ACTOR}:${GITHUB_TOKEN}" -fsSL "https://api.github.com/repos/intel/compute-runtime/releases/latest" | jq -re '.tag_name') || exit 1
json=$(cat VERSION.json)
jq --sort-keys \
Expand Down

0 comments on commit 78695db

Please sign in to comment.