Skip to content

Commit

Permalink
chore: fix ci
Browse files Browse the repository at this point in the history
  • Loading branch information
DjDeveloperr committed Oct 3, 2024
1 parent 728a924 commit 6782c8f
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,8 @@ jobs:
deno task build-skia
cp ./native/build/libnative_canvas{,_aarch64}.dylib
deno task build-macos-x86_64
cp ./native/build/libnative_canvas{,_x86_64}.dylib
cp ./native/build/libnative_canvas{_aarch64,}.dylib
- name: Build Native Library (Windows)
if: runner.os == 'Windows'
Expand All @@ -99,6 +101,10 @@ jobs:
DENO_SKIA_LOCAL: 1
run: deno run -A --unstable test/test.ts

- name: Rename x86_64 binary (macOS)
if: runner.os == 'macOS'
run: cp ./native/build/libnative_canvas{_x86_64,}.dylib

- name: Release
uses: softprops/action-gh-release@master
if: ${{ github.ref == 'refs/heads/main' }}
Expand Down

0 comments on commit 6782c8f

Please sign in to comment.