We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 728a924 commit 6782c8fCopy full SHA for 6782c8f
.github/workflows/ci.yml
@@ -81,6 +81,8 @@ jobs:
81
deno task build-skia
82
cp ./native/build/libnative_canvas{,_aarch64}.dylib
83
deno task build-macos-x86_64
84
+ cp ./native/build/libnative_canvas{,_x86_64}.dylib
85
+ cp ./native/build/libnative_canvas{_aarch64,}.dylib
86
87
- name: Build Native Library (Windows)
88
if: runner.os == 'Windows'
@@ -99,6 +101,10 @@ jobs:
99
101
DENO_SKIA_LOCAL: 1
100
102
run: deno run -A --unstable test/test.ts
103
104
+ - name: Rename x86_64 binary (macOS)
105
+ if: runner.os == 'macOS'
106
+ run: cp ./native/build/libnative_canvas{_x86_64,}.dylib
107
+
108
- name: Release
109
uses: softprops/action-gh-release@master
110
if: ${{ github.ref == 'refs/heads/main' }}
0 commit comments