From 091487529613b846d8b2c778c002563e5a45ba8f Mon Sep 17 00:00:00 2001 From: Preston Date: Sat, 11 Jul 2020 22:33:26 -0400 Subject: [PATCH] Update build.yml --- .github/workflows/build.yml | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 7aaa406f8..ec97151e4 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -44,11 +44,15 @@ jobs: name: freetube-vue_0.8.0_amd64.rpm path: build/freetube-vue-0.8.0.x86_64.rpm - name: Build with ARM64 - uses: uraimo/run-on-arch-action@v1.0.9 if: startsWith(matrix.os, 'ubuntu') - - run: npm ci - - run: npm run lint - - run: npm run build --if-present + uses: uraimo/run-on-arch-action@v1.0.9 + with: + architecture: armv7 + distribution: ubuntu18.04 + run: | + npm ci + npm run lint + npm run build --if-present - name: Upload Linux ARM64 .deb Artifact uses: actions/upload-artifact@v2 if: startsWith(matrix.os, 'ubuntu')