From 7dc012314094b87c2c2d95536bb9d4846a7c72a7 Mon Sep 17 00:00:00 2001 From: Thomas Basler Date: Sun, 18 Sep 2022 18:40:00 +0200 Subject: [PATCH] Place custom partition config in artifact --- .github/workflows/build.yml | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index fa2ce8b..6d6f602 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -3,12 +3,12 @@ name: OpenDTU Build on: push: paths-ignore: - - docs/** - - '**/*.md' + - docs/** + - '**/*.md' pull_request: paths-ignore: - - docs/** - - '**/*.md' + - docs/** + - '**/*.md' jobs: get_default_envs: @@ -100,12 +100,15 @@ jobs: name: opendtu-${{ matrix.environment }} path: | .pio/build/${{ matrix.environment }}/opendtu-${{ matrix.environment }}.bin + .pio/build/${{ matrix.environment }}/partitions.bin - uses: actions/upload-artifact@v3 if: startsWith(github.ref, 'refs/tags/') with: name: opendtu-release - path: .pio/build/${{ matrix.environment }}/opendtu-${{ matrix.environment }}.bin + path: | + .pio/build/${{ matrix.environment }}/opendtu-${{ matrix.environment }}.bin + .pio/build/${{ matrix.environment }}/partitions.bin release: name: Create Release