Skip to content

Commit

Permalink
Bump version and release workflow update
Browse files Browse the repository at this point in the history
  • Loading branch information
k0gen committed Nov 29, 2023
1 parent ea0eb57 commit 0fbac82
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 41 deletions.
45 changes: 8 additions & 37 deletions .github/workflows/releaseService.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,55 +7,25 @@ on:
- 'v*.*'

jobs:
ReleasePackage:
BuildPackage:
runs-on: ubuntu-latest
steps:
- name: Set up QEMU
uses: docker/setup-qemu-action@v2
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
- name: Set up Rust Toolchain
uses: actions-rust-lang/setup-rust-toolchain@v1
with:
toolchain: stable
- name: Get StartOS Hash
run: echo "STARTOSHASH=$(git ls-remote https://github.com/Start9Labs/start-os --branch sdk | awk '{ print $1}')" >> $GITHUB_ENV
- name: Cache Packages
uses: buildjet/cache@v3
id: packageCache
with:
path: |
~/.cargo/bin/
~/.cargo/registry/index/
~/.cargo/registry/cache/
~/.cargo/git/db/
target/
key: ${{ runner.os }}-jellyfin-${{ env.STARTOSHASH }}
- name: Install Dependencies
run: |
sudo snap install yq deno
sudo apt-get install -y build-essential openssl libssl-dev libc6-dev clang libclang-dev ca-certificates
- name: Prepare StartOS SDK
uses: Start9Labs/sdk@v1

- name: Checkout services repository
uses: actions/checkout@v3
- name: Install Package Manager
id: packageManager
if: steps.packageCache.outputs.cache-hit != 'true'
run: |
cd ~/ && git clone https://github.com/Start9Labs/start-os.git --branch sdk;
cd start-os;
git submodule update --init --recursive
cd backend;
export RUSTFLAGS="";
export OS_ARCH=$(uname -m);
./install-sdk.sh;

- name: Build the service package
run: |
git submodule update --init --recursive
start-sdk init
make
- name: Generate sha256 checksum
run: |
sha256sum jellyfin.s9pk > jellyfin.s9pk.sha256
- name: Generate changelog
run: |
echo "## What's Changed" > change-log.txt
Expand All @@ -64,6 +34,7 @@ jobs:
echo '```' >> change-log.txt
sha256sum jellyfin.s9pk >> change-log.txt
echo '```' >> change-log.txt
- name: Create Release
uses: softprops/action-gh-release@v1
env:
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM jellyfin/jellyfin:10.8.12
FROM jellyfin/jellyfin:10.8.13

ARG DEBIAN_FRONTEND="noninteractive"

Expand Down
4 changes: 2 additions & 2 deletions manifest.yaml
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
id: jellyfin
title: "Jellyfin"
version: 10.8.12
version: 10.8.13
release-notes: |
* Upstream code update
* Added support for GPU acceleration in video transcoding
* New standardized and optimized icon
* Code cleanup and bug fixes
* Instructions update
* Full list of upstream changes available [here](https://github.com/jellyfin/jellyfin/compare/v10.8.10...v10.8.12)"
* Full list of upstream changes available [here](https://github.com/jellyfin/jellyfin/compare/v10.8.10...v10.8.13)"
license: GPL-2.0
wrapper-repo: "https://github.com/Start9Labs/jellyfin-startos"
upstream-repo: "https://github.com/jellyfin/jellyfin"
Expand Down
2 changes: 1 addition & 1 deletion scripts/procedures/migrations.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,5 +24,5 @@ export const migration: T.ExpectedExports.migration = compat.migrations
down: () => { throw new Error('Downgrades are prohibited below 10.8.9.1 due to service instabilities below 10.9.8.1') },
},
},
"10.8.12",
"10.8.13",
);

0 comments on commit 0fbac82

Please sign in to comment.