fix changelog
All checks were successful
continuous-integration/drone Build is passing

This commit is contained in:
nyyu 2022-08-22 22:55:41 +02:00
parent edd5667917
commit 61fbe7242c
2 changed files with 73 additions and 75 deletions

View File

@ -7,7 +7,7 @@ environment:
version: 18.1
steps:
- name: sync
- name: sync
pull: always
image: docker.nyyu.dev/lineage/android:latest
commands:
@ -20,7 +20,7 @@ steps:
volumes:
- name: build
path: /build
- name: build
- name: build
pull: always
image: docker.nyyu.dev/lineage/android:latest
commands:
@ -29,25 +29,25 @@ steps:
volumes:
- name: build
path: /build
- name: copy
- name: copy
pull: always
image: docker.nyyu.dev/lineage/android:latest
commands:
- rm -f /http/lineage-$version-*-UNOFFICIAL-$device.zip*
- mv -f /build/out/target/product/$device/lineage-$version-*-UNOFFICIAL-$device.zip* /http/
- cat /build/changelog_${device}_${version}.md >> /http/changelog_${device}_${version}.md
- cat /build/changelog-$device-$version.md >> /http/changelog-$device-$version.md
- ls -lh /http/lineage-$version-*-UNOFFICIAL-$device.zip*
volumes:
- name: build
path: /build
- name: http
path: /http
- name: clean
- name: clean
pull: always
image: docker.nyyu.dev/lineage/android:latest
commands:
- rm -f /build/out/target/product/$device/lineage-$version-*-UNOFFICIAL-$device.zip_* /build/out/target/product/$device/lineage_$device-ota-eng.*.zip
- rm -f /build/changelog_${device}_${version}.md
- rm -f /build/changelog-$device-$version.md
volumes:
- name: build
path: /build
@ -57,18 +57,15 @@ trigger:
- cron
volumes:
- name: http
- name: http
host:
path: /srv/http/drone
- name: build
- name: build
host:
path: /drone/lineage-18.1
- name: publish
host:
path: /mnt/android/lineage
image_pull_secrets:
- dockerconfig
- dockerconfig
---
kind: pipeline
type: docker
@ -79,12 +76,13 @@ environment:
version: 18.1
steps:
- name: publish
- name: publish
pull: always
image: docker.nyyu.dev/lineage/android:latest
commands:
- mv /http/lineage-$version-*-UNOFFICIAL-$device.zip* /publish/$version/$device/
- cat /http/changelog_${device}_${version}.md >> /publish/$version/$device/changelog.md
- cat /http/changelog-$device-$version.md >> /publish/$version/$device/changelog.md
- rm -f /http/changelog-$device-$version.md
- ls -lh /publish/$version/$device/
volumes:
- name: http
@ -96,12 +94,12 @@ trigger:
- promote
volumes:
- name: http
- name: http
host:
path: /srv/http/drone
- name: publish
- name: publish
host:
path: /mnt/android/lineage
image_pull_secrets:
- dockerconfig
- dockerconfig

View File

@ -1,7 +1,7 @@
#!/bin/bash
TOPDIR=$(pwd)
changelog=${TOPDIR}/changelog_${device}_${version}.md
changelog=${TOPDIR}/changelog-${device}-${version}.md
declare -A before
tmp=($(repo forall -c 'echo "${REPO_PATH}:$(git rev-parse HEAD)"'))