Skip to content

Commit

Permalink
Fix release action
Browse files Browse the repository at this point in the history
  • Loading branch information
grant0417 committed Mar 27, 2022
1 parent 1ef40d9 commit f32c590
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit f32c590

Please sign in to comment.