-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: Change .github/workflows/build.yml
- Loading branch information
1 parent
ad7439f
commit 8d3334a
Showing
1 changed file
with
4 additions
and
4 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -18,10 +18,10 @@ jobs: | |
- name: Set Tag and Compile | ||
run: | | ||
echo "TAG=${GITHUB_REF##*/}" >> $GITHUB_ENV | ||
deno compile --target x86_64-unknown-linux-gnu --output base85-linux-x86 cli.ts | ||
deno compile --target x86_64-pc-windows-msvc --output base85-windows-x86 cli.ts | ||
deno compile --target x86_64-apple-darwin --output base85-macos-x86 cli.ts | ||
deno compile --target aarch64-apple-darwin --output base85-macos-arm cli.ts | ||
deno compile --allow-read --target x86_64-unknown-linux-gnu --output base85-linux-x86 cli.ts | ||
deno compile --allow-read --target x86_64-pc-windows-msvc --output base85-windows-x86 cli.ts | ||
deno compile --allow-read --target x86_64-apple-darwin --output base85-macos-x86 cli.ts | ||
deno compile --allow-read --target aarch64-apple-darwin --output base85-macos-arm cli.ts | ||
- name: Create Release | ||
id: create_release | ||
uses: actions/[email protected] | ||
|