Skip to content

Commit

Permalink
single qoutes?
Browse files Browse the repository at this point in the history
  • Loading branch information
eliassjogreen committed Jun 24, 2022
1 parent 7741dbe commit 4aad377
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
deno-version: v1.x

- name: install webkit2gtk (Linux)
if: matrix.os == "ubuntu-latest"
if: matrix.os == 'ubuntu-latest'
run: |
sudo apt-get update
sudo apt-get install -y webkit2gtk-4.0
Expand All @@ -37,7 +37,7 @@ jobs:
run: deno task build

- name: Upload Artifacts (Windows)
if: matrix.os == "windows-latest"
if: matrix.os == 'windows-latest'
uses: actions/upload-artifact@v1
with:
name: windows-dynamic-library
Expand All @@ -46,14 +46,14 @@ jobs:
build/Webview2Loader.dll
- name: Upload Artifacts (Linux)
if: matrix.os == "ubuntu-latest"
if: matrix.os == 'ubuntu-latest'
uses: actions/upload-artifact@v1
with:
name: linux-dynamic-library
build/libwebview.so

- name: Upload Artifacts (Darwin)
if: matrix.os == "macos-latest"
if: matrix.os == 'macos-latest'
uses: actions/upload-artifact@v1
with:
name: darwin-dynamic-library
Expand Down

0 comments on commit 4aad377

Please sign in to comment.