From 054229c1358e8795579e983d8c46925876c9db51 Mon Sep 17 00:00:00 2001 From: joffutt4 Date: Sat, 17 Apr 2021 01:40:43 +0000 Subject: [PATCH] Forgot quotes --- .github/workflows/build.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index b23b24f..7a198d5 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -33,7 +33,7 @@ jobs: npm run build - name: Upload Linux Artifact - if: ${{ matrix.os == ubuntu-latest }} + if: ${{ matrix.os == 'ubuntu-latest' }} uses: actions/upload-artifact@v2.2.3 with: # Artifact name @@ -42,7 +42,7 @@ jobs: path: dist/electron/Packaged/*.AppImage - name: Upload MacOS Artifact - if: ${{ matrix.os == macOS-latest }} + if: ${{ matrix.os == 'macOS-latest' }} uses: actions/upload-artifact@v2.2.3 with: # Artifact name @@ -51,7 +51,7 @@ jobs: path: dist/electron/Packaged/*.dmg - name: Upload Windows Artifact - if: ${{ matrix.os == windows-latest }} + if: ${{ matrix.os == 'windows-latest' }} uses: actions/upload-artifact@v2.2.3 with: # Artifact name