From f32c59097f0b1561f0ec421be53bd45d142a0a93 Mon Sep 17 00:00:00 2001 From: Grant G Date: Sun, 27 Mar 2022 16:18:17 -0700 Subject: [PATCH] Fix release action --- .github/workflows/release.yaml | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 72f264a..ffae748 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -15,18 +15,18 @@ jobs: with: deno-version: v1.x - name: Compile Linux - uses: deno compile --allow-net --allow-run --target x86_64-unknown-linux-gnu -o mullvad-ping-linux script.ts + run: deno compile --allow-net --allow-run --target x86_64-unknown-linux-gnu -o mullvad-ping-linux script.ts - name: Compile Windows - uses: deno compile --allow-net --allow-run --target x86_64-pc-windows-msvc -o mullvad-ping-windows.exe script.ts + run: deno compile --allow-net --allow-run --target x86_64-pc-windows-msvc -o mullvad-ping-windows.exe script.ts - name: Compile Apple Intel - uses: deno compile --allow-net --allow-run --target x86_64-apple-darwin -o mullvad-ping-macos-intel script.ts + run: deno compile --allow-net --allow-run --target x86_64-apple-darwin -o mullvad-ping-macos-intel script.ts - name: Compile Apple Arm - uses: deno compile --allow-net --allow-run --target aarch64-apple-darwin -o mullvad-ping-macos-arm script.ts + run: deno compile --allow-net --allow-run --target aarch64-apple-darwin -o mullvad-ping-macos-arm script.ts - name: Release uses: softprops/action-gh-release@v1 - with: - files: | - mullvad-ping-linux - mullvad-ping-windows.exe - mullvad-ping-macos-intel - mullvad-ping-macos-arm + with: + files: | + mullvad-ping-linux + mullvad-ping-windows.exe + mullvad-ping-macos-intel + mullvad-ping-macos-arm