Skip to content

Commit

Permalink
chore: Fix .github/workflows/build.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
redpeacock78 committed Nov 11, 2021
1 parent 92540af commit 10296e0
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 base86-linux-x86 cli.ts
deno compile --target x86_64-pc-windows-msvc --output base86-windows-x86 cli.ts
deno compile --target x86_64-apple-darwin --output base86-macos-x86 cli.ts
deno compile --target aarch64-apple-darwin --output base86-macos-arm cli.ts
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
- name: Create Release
id: create_release
uses: actions/[email protected]
Expand All @@ -36,4 +36,4 @@ jobs:
uses: shogo82148/actions-upload-release-asset@v1
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: "base86-*"
asset_path: "base85-*"

0 comments on commit 10296e0

Please sign in to comment.