Skip to content

Tweaks to how successful/failed packets are handled and effect names #2

Tweaks to how successful/failed packets are handled and effect names

Tweaks to how successful/failed packets are handled and effect names #2

Workflow file for this run

name: compile
on:
push:
pull_request:
jobs:
compile:
runs-on: ubuntu-latest
steps:
- uses: denoland/setup-deno@v1
with:
deno-version: vx.x.x
- uses: actions/checkout@v3
- name: Compile
run: |
deno compile --target aarch64-apple-darwin --allow-net --allow-read -o build/sail-mac-aarch64 json_sail.ts
deno compile --target x86_64-apple-darwin --allow-net --allow-read -o build/sail-mac-x86_64 json_sail.ts
deno compile --target x86_64-pc-windows-msvc --allow-net --allow-read -o build/sail-windows-x86_64.exe json_sail.ts
deno compile --target x86_64-unknown-linux-gnu --allow-net --allow-read -o build/sail-linux-x86_64 json_sail.ts
- name: Upload macOS aarch64
uses: actions/upload-artifact@v3
with:
name: sail-mac-aarch64
path: build/sail-mac-aarch64
- name: Upload macOS x86_64
uses: actions/upload-artifact@v3
with:
name: sail-mac-x86_64
path: build/sail-mac-x86_64
- name: Upload Windows x86_64
uses: actions/upload-artifact@v3
with:
name: sail-windows-x86_64.exe
path: build/sail-windows-x86_64.exe
- name: Upload Linux x86_64
uses: actions/upload-artifact@v3
with:
name: sail-linux-x86_64
path: build/sail-linux-x86_64