mirror of
				https://github.com/Mastermindzh/tidal-hifi.git
				synced 2025-11-04 10:49:26 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			17 lines
		
	
	
		
			316 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			316 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
kind: pipeline
 | 
						|
type: docker
 | 
						|
name: default
 | 
						|
 | 
						|
steps:
 | 
						|
  - name: install
 | 
						|
    image: node:22.17.0
 | 
						|
    commands:
 | 
						|
      - npm install
 | 
						|
 | 
						|
  - name: build_with_linux
 | 
						|
    image: node:22.17.0
 | 
						|
    commands:
 | 
						|
      - apt-get update && apt-get upgrade -y
 | 
						|
      - apt-get install -y libarchive-tools rpm
 | 
						|
      - npm run build-unpacked
 |