25 lines
412 B
YAML
25 lines
412 B
YAML
variables:
|
|
- &build_vol '/media/fast/lineage/lineage-20.0:/build'
|
|
|
|
matrix:
|
|
include:
|
|
- device: mondrian
|
|
version: 20.0
|
|
|
|
skip_clone: true
|
|
|
|
pipeline:
|
|
final:
|
|
pull: true
|
|
image: alpine
|
|
commands:
|
|
- cd /build
|
|
- mv -f gitstate-$device-$version.tmp.txt gitstate-$device-$version.txt
|
|
volumes:
|
|
- *build_vol
|
|
when:
|
|
event:
|
|
- deployment
|
|
|
|
depends_on:
|
|
- publish |