From ca739570b3303d3fc064948dad87a56b13e3dfa9 Mon Sep 17 00:00:00 2001 From: Rajiv Shah Date: Mon, 22 Mar 2021 18:10:32 -0400 Subject: [PATCH] fix(ci): Fix pipeline change to Ubuntu 18.04 --- .github/workflows/build-desktop.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build-desktop.yml b/.github/workflows/build-desktop.yml index 5ad559cd54d..96bb6f2b5d2 100644 --- a/.github/workflows/build-desktop.yml +++ b/.github/workflows/build-desktop.yml @@ -44,7 +44,7 @@ jobs: sudo apt install -y gcc-multilib g++-multilib build-essential libssl-dev rpm libsecret-1-dev \ software-properties-common apt-transport-https libudev-dev libusb-1.0-0-dev \ llvm-dev libclang-dev clang - if: matrix.os == 'ubuntu-latest' + if: matrix.os == 'ubuntu-18.04' - name: Enable verbose output for electron-builder (macOS/Linux) run: echo "DEBUG=electron-builder" >> $GITHUB_ENV @@ -84,12 +84,12 @@ jobs: - name: Build Electron app (Linux) run: yarn compile:linux working-directory: packages/desktop - if: matrix.os == 'ubuntu-latest' + if: matrix.os == 'ubuntu-18.04' - name: Compute checksums (Linux) run: for i in `ls | grep 'firefly-desktop*'` ; do sha256sum $i | awk {'print $1'} > $i.sha256 ; done working-directory: packages/desktop/out - if: matrix.os == 'ubuntu-latest' + if: matrix.os == 'ubuntu-18.04' - name: Compute checksums (macOS) run: for i in `ls | grep 'firefly-desktop*'` ; do shasum -a 256 $i | awk {'print $1'} > $i.sha256 ; done @@ -139,7 +139,7 @@ jobs: - name: Downloading artifacts uses: actions/download-artifact@v2 with: - name: firefly-desktop-ubuntu-latest + name: firefly-desktop-ubuntu-18.04 path: assets - name: Preparing release body