From e88ae15272ed46a47fbb2c551e7859ab968d85e9 Mon Sep 17 00:00:00 2001 From: Stefan Agner Date: Thu, 26 Nov 2020 00:34:46 +0100 Subject: [PATCH] Add sub-directory per development build (#1020) HAOS builds add a lot of files and things get quickly messy. Use a directory per build. Also don't abort the complete build if a single board failed, we still might be interested in the rest. --- .github/workflows/dev.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/dev.yml b/.github/workflows/dev.yml index 0cfe1bdb5..22b5d2886 100644 --- a/.github/workflows/dev.yml +++ b/.github/workflows/dev.yml @@ -25,6 +25,7 @@ jobs: name: Release build for ${{ matrix.board.name }} needs: version strategy: + fail-fast: false matrix: board: - {"name": "ova", "output": "ova", "runner": "x86-64-runner"} @@ -75,6 +76,6 @@ jobs: port: ${{ secrets.DEV_PORT }} key: ${{ secrets.DEV_SCP_KEY }} source: "release/*" - target: ${{ secrets.DEV_TARGET_PATH }} + target: ${{ secrets.DEV_TARGET_PATH }}/${{ needs.version.outputs.version_dev }}/ strip_components: 1