From 8cef8b66c8a6bfadfea648042fa73c12ce1ac925 Mon Sep 17 00:00:00 2001 From: Raul Victor Trombin <80598030+RaulTrombin@users.noreply.github.com> Date: Fri, 2 Feb 2024 15:15:14 -0300 Subject: [PATCH] github: action: Change to self-hosted runner download only armv7 binary (#8) --- .github/workflows/action.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/action.yml b/.github/workflows/action.yml index ffa8a2e..017c978 100644 --- a/.github/workflows/action.yml +++ b/.github/workflows/action.yml @@ -77,12 +77,12 @@ jobs: - name: Download bin uses: actions/download-artifact@v3 with: - name: bin + name: armv7-unknown-linux-gnueabihf path: dist - name: Run in background run: | - chmod +x ./dist/armv7-unknown-linux-gnueabihf/navigator-webassistant - ./dist/armv7-unknown-linux-gnueabihf/navigator-webassistant > navigator.log 2>&1 & + chmod +x ./dist/navigator-webassistant + ./dist/navigator-webassistant > navigator.log 2>&1 & PID=$! sleep 10