tempfix: types are broken or missing -- ignored #6
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Main | |
on: | |
"workflow_dispatch": | |
push: | |
tags: | |
- v* | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Setup Deno | |
uses: denoland/setup-deno@v1 | |
with: | |
deno-version: "~1.44" | |
- name: Build for Linux x86_64 | |
run: deno compile --target x86_64-unknown-linux-gnu -A --unstable-kv --output telecraft-linux-x86_64 packages/cli/index.ts | |
- name: Build for Linux aarch64 | |
run: deno compile --target aarch64-unknown-linux-gnu -A --unstable-kv --output telecraft-linux-aarch64 packages/cli/index.ts | |
- name: Build for Windows x86_64 | |
run: deno compile --target x86_64-pc-windows-msvc -A --unstable-kv --output telecraft-win-x86_64.exe packages/cli/index.ts | |
- name: Build for MacOS aarch64 | |
run: deno compile --target aarch64-apple-darwin -A --unstable-kv --output telecraft-macos-aarch64 packages/cli/index.ts | |
- name: Release | |
uses: softprops/action-gh-release@v1 | |
with: | |
files: telecraft-* |