Build Jellyseerr LXC Image #221
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build Jellyseerr LXC Image | |
on: | |
pull_request: | |
types: | |
- opened | |
- synchronize | |
- reopened | |
- closed | |
branches: | |
- main | |
paths: | |
- '.github/workflows/build-jellyseerr.yml' | |
- 'templates/jellyseerr.yml' | |
schedule: | |
- cron: '0 0 */1 * *' | |
jobs: | |
init: | |
if: github.event.action != 'closed' || (github.event.action == 'closed' && github.event.pull_request.merged) | |
runs-on: ubuntu-latest | |
steps: | |
- name: Get Application version | |
id: get-app-version | |
run: | | |
echo "APP_VERSION=$(curl -s https://api.github.com/repos/Fallenbagel/jellyseerr/releases/latest | jq -r '.tag_name' | sed -E 's/^v|V//')" >> $GITHUB_OUTPUT | |
outputs: | |
app_version: ${{steps.get-app-version.outputs.APP_VERSION}} | |
image-build: | |
needs: init | |
strategy: | |
matrix: | |
architectures: | |
- amd64 | |
uses: ./.github/workflows/builder.yml | |
with: | |
config_path: templates/jellyseerr.yml | |
app_name: jellyseerr | |
app_version: ${{needs.init.outputs.app_version}} | |
description: Open source software application for managing requests for your media library. | |
categories: Media, Streaming | |
project_source: https://github.com/Fallenbagel/jellyseerr | |
distribution: debian | |
release: bookworm | |
architecture: ${{matrix.architectures}} | |
branch_name: ${{github.event.pull_request.base.ref}} | |
is_merged: ${{github.event.pull_request.merged || github.event_name == 'schedule'}} | |
secrets: inherit |