From 17c60d2fb3185e1ac84555c1000e38e1a721831c Mon Sep 17 00:00:00 2001 From: CodeDevMLH <145071728+CodeDevMLH@users.noreply.github.com> Date: Fri, 2 Jan 2026 19:51:31 +0100 Subject: [PATCH] Remove internal build workflow configuration --- .gitea/workflows/build_internal.yaml | 39 ---------------------------- 1 file changed, 39 deletions(-) delete mode 100644 .gitea/workflows/build_internal.yaml diff --git a/.gitea/workflows/build_internal.yaml b/.gitea/workflows/build_internal.yaml deleted file mode 100644 index a80961b..0000000 --- a/.gitea/workflows/build_internal.yaml +++ /dev/null @@ -1,39 +0,0 @@ -on: - workflow_call: - inputs: - dotnet-version: - required: false - default: "9.0.x" - description: "The .NET version to setup for the build" - type: string - dotnet-target: - required: false - default: "net9.0" - description: "The .NET target to set for JPRM" - type: string - -jobs: - build: - runs-on: ubuntu-latest - steps: - - name: Checkout Repository - uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1 - - - name: Setup .NET - uses: actions/setup-dotnet@2016bd2012dba4e32de620c46fe006a3ac9f0602 # v5.0.1 - with: - dotnet-version: "${{ inputs.dotnet-version }}" - - - name: Build Jellyfin Plugin - uses: oddstr13/jellyfin-plugin-repository-manager@9497a0a499416cc572ed2e07a391d9f943a37b4d # v1.1.1 - id: jprm - with: - dotnet-target: "${{ inputs.dotnet-target }}" - - - name: Upload Artifact - uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f # v6 - with: - name: build-artifact - retention-days: 30 - if-no-files-found: error - path: ${{ steps.jprm.outputs.artifact }}