From 3c23856d37fdbbbb3a50425ea1720451e78abaa0 Mon Sep 17 00:00:00 2001 From: David Holdeman Date: Tue, 12 Mar 2024 17:46:59 -0500 Subject: [PATCH] fix push --- .github/workflows/build-firmware.yaml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build-firmware.yaml b/.github/workflows/build-firmware.yaml index 788f887..0186b77 100644 --- a/.github/workflows/build-firmware.yaml +++ b/.github/workflows/build-firmware.yaml @@ -19,9 +19,10 @@ jobs: id: set-variables run: | if [ "${{github.event_name}}" == "push" -o "${{github.event_name}}" == "schedule" -o "${{github.event_name}}" == "workflow_dispatch" ] && [ "${{github.ref}}" == "refs/heads/master" -o "${{github.ref}}" == "refs/heads/main" ]; then - echo 'upload="bundles"' >> $GITHUB_OUTPUT + echo 'upload=bundles' >> $GITHUB_OUTPUT + echo 'push=true' >> $GITHUB_OUTPUT else - echo 'push="false"' >> $GITHUB_OUTPUT + echo 'push=false' >> $GITHUB_OUTPUT fi - uses: ./ext/rusefi/.github/workflows/custom-board-build