From 29d10e1b0a8b37f6da93cbcee23b37514a036d23 Mon Sep 17 00:00:00 2001 From: rusdacent <57439765+rusdacent@users.noreply.github.com> Date: Mon, 10 May 2021 13:14:33 +0300 Subject: [PATCH] Upload ELFs to update server (#457) --- .github/workflows/ci.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 46afb6d00..8e17098c7 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -70,8 +70,10 @@ jobs: run: | mv bootloader/.obj/${TARGET_VERSION}/bootloader.dfu bootloader.dfu mv bootloader/.obj/${TARGET_VERSION}/bootloader.bin bootloader.bin + mv bootloader/.obj/${TARGET_VERSION}/bootloader.elf bootloader.elf mv firmware/.obj/${TARGET_VERSION}/firmware.dfu firmware.dfu mv firmware/.obj/${TARGET_VERSION}/firmware.bin firmware.bin + mv firmware/.obj/${TARGET_VERSION}/firmware.elf firmware.elf - name: Generate full dfu file uses: ./.github/actions/docker @@ -120,7 +122,7 @@ jobs: remote_key: ${{ secrets.RSYNC_DEPLOY_KEY }} - name: Generate files list - run: ls bootloader.dfu firmware.dfu full.dfu bootloader.bin firmware.bin full.bin > uploadlist.txt + run: ls bootloader.dfu firmware.dfu full.dfu bootloader.bin firmware.bin full.bin bootloader.elf firmware.elf > uploadlist.txt - name: Upload artifacts uses: burnett01/rsync-deployments@4.1