mirror of
				https://github.com/jellyfin/jellyfin.git
				synced 2025-11-03 19:17:24 -05:00 
			
		
		
		
	Remove unstable npm ci task
This commit is contained in:
		
							parent
							
								
									3900976be5
								
							
						
					
					
						commit
						d2f439efd2
					
				@ -35,14 +35,6 @@ jobs:
 | 
			
		||||
        customEndpoint: 'jellyfin-bot for NPM'
 | 
			
		||||
 | 
			
		||||
## Generate npm api client
 | 
			
		||||
# Unstable
 | 
			
		||||
    - task: CmdLine@2
 | 
			
		||||
      displayName: 'Build unstable typescript axios client'
 | 
			
		||||
      condition: startsWith(variables['Build.SourceBranch'], 'refs/heads/master')
 | 
			
		||||
      inputs:
 | 
			
		||||
        script: "bash ./apiclient/templates/typescript/axios/generate.sh $(System.ArtifactsDirectory) $(Build.BuildNumber)"
 | 
			
		||||
 | 
			
		||||
# Stable
 | 
			
		||||
    - task: CmdLine@2
 | 
			
		||||
      displayName: 'Build stable typescript axios client'
 | 
			
		||||
      condition: startsWith(variables['Build.SourceBranch'], 'refs/tags/v')
 | 
			
		||||
@ -57,17 +49,6 @@ jobs:
 | 
			
		||||
        workingDir: ./apiclient/generated/typescript/axios
 | 
			
		||||
 | 
			
		||||
## Publish npm packages
 | 
			
		||||
# Unstable
 | 
			
		||||
    - task: Npm@1
 | 
			
		||||
      displayName: 'Publish unstable typescript axios client'
 | 
			
		||||
      condition: startsWith(variables['Build.SourceBranch'], 'refs/heads/master')
 | 
			
		||||
      inputs:
 | 
			
		||||
        command: publish
 | 
			
		||||
        publishRegistry: useFeed
 | 
			
		||||
        publishFeed: 'jellyfin/unstable'
 | 
			
		||||
        workingDir: ./apiclient/generated/typescript/axios
 | 
			
		||||
 | 
			
		||||
# Stable
 | 
			
		||||
    - task: Npm@1
 | 
			
		||||
      displayName: 'Publish stable typescript axios client'
 | 
			
		||||
      condition: startsWith(variables['Build.SourceBranch'], 'refs/tags/v')
 | 
			
		||||
 | 
			
		||||
@ -1,14 +1,6 @@
 | 
			
		||||
#!/bin/bash
 | 
			
		||||
 | 
			
		||||
artifactsDirectory="${1}"
 | 
			
		||||
buildNumber="${2}"
 | 
			
		||||
if [[ -n ${buildNumber} ]]; then
 | 
			
		||||
    # Unstable build
 | 
			
		||||
    additionalProperties=",snapshotVersion=-SNAPSHOT.${buildNumber},npmRepository=https://pkgs.dev.azure.com/jellyfin-project/jellyfin/_packaging/unstable/npm/registry/"
 | 
			
		||||
else
 | 
			
		||||
    # Stable build
 | 
			
		||||
    additionalProperties=""
 | 
			
		||||
fi
 | 
			
		||||
 | 
			
		||||
java -jar openapi-generator-cli.jar generate \
 | 
			
		||||
    --input-spec ${artifactsDirectory}/openapispec/openapi.json \
 | 
			
		||||
@ -16,4 +8,4 @@ java -jar openapi-generator-cli.jar generate \
 | 
			
		||||
    --output ./apiclient/generated/typescript/axios  \
 | 
			
		||||
    --template-dir ./apiclient/templates/typescript/axios \
 | 
			
		||||
    --ignore-file-override ./apiclient/.openapi-generator-ignore \
 | 
			
		||||
    --additional-properties=useSingleRequestParameter="true",withSeparateModelsAndApi="true",modelPackage="models",apiPackage="api",npmName="axios"${additionalProperties}
 | 
			
		||||
    --additional-properties=useSingleRequestParameter="true",withSeparateModelsAndApi="true",modelPackage="models",apiPackage="api",npmName="axios"
 | 
			
		||||
 | 
			
		||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user