From 568180d7b279f414f1a04e090b931573c7206bc5 Mon Sep 17 00:00:00 2001 From: Gunnar Skjold Date: Thu, 12 Dec 2019 19:49:22 +0100 Subject: [PATCH] Update release.yml --- .github/workflows/release.yml | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index d4bb8073..8d6805c5 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -69,3 +69,12 @@ jobs: asset_path: .pio/build/hw1esp12e/firmware.bin asset_name: ams2mqtt-hw1esp12e-${{ steps.release_tag.outputs.tag }}.bin asset_content_type: application/octet-stream + - name: Upload featheresp32 binary to release + uses: actions/upload-release-asset@v1.0.1 + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + with: + upload_url: ${{ steps.create_release.outputs.upload_url }} + asset_path: .pio/build/featheresp32/firmware.bin + asset_name: ams2mqtt-featheresp32-${{ steps.release_tag.outputs.tag }}.bin + asset_content_type: application/octet-stream