mirror of
https://github.com/Mastermindzh/tidal-hifi.git
synced 2024-11-22 05:23:09 +01:00
17 lines
314 B
YAML
17 lines
314 B
YAML
kind: pipeline
|
|
type: docker
|
|
name: default
|
|
|
|
steps:
|
|
- name: install
|
|
image: node:19.4.0
|
|
commands:
|
|
- npm install
|
|
|
|
- name: build_with_linux
|
|
image: node:19.4.0
|
|
commands:
|
|
- apt-get update && apt-get upgrade -y
|
|
- apt-get install -y libarchive-tools rpm
|
|
- npm run build-unpacked
|