34 lines
502 B
YAML
34 lines
502 B
YAML
kind: pipeline
|
|
name: default
|
|
|
|
workspace:
|
|
base: /go
|
|
path: src/deadbeef.codes/steven/lineageos-build
|
|
|
|
|
|
|
|
steps:
|
|
- name: Update Electrum
|
|
image: registry.deadbeef.codes/lineageos-build:latest
|
|
pull: always
|
|
volumes:
|
|
- name: apps
|
|
path: /apps
|
|
settings:
|
|
repo: registry.deadbeef.codes/lineageos-build
|
|
commands:
|
|
- chmod +x update-electrum.sh
|
|
- ./update-electrum.sh
|
|
when:
|
|
target:
|
|
include:
|
|
- updateelectrum
|
|
|
|
|
|
|
|
volumes:
|
|
- name: apps
|
|
host:
|
|
path: /data/android/apps
|
|
|