Skip to content

Commit 2e6de78

Browse files
committed
make release
1 parent ddd52f1 commit 2e6de78

File tree

1 file changed

+12
-1
lines changed

1 file changed

+12
-1
lines changed

.github/workflows/build.yaml

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,4 +38,15 @@ jobs:
3838
path: |
3939
libobjc.a
4040
.aarch64/libobjc.a
41-
src/objc/*.h
41+
src/objc/*.h
42+
- name: Create zip for release
43+
run: |
44+
cp -r src/objc .
45+
zip -r release.zip libobjc.a .aarch64/libobjc.a objc/*.h
46+
- name: Upload binaries to release
47+
uses: svenstaro/upload-release-action@v2
48+
with:
49+
repo_token: ${{ secrets.GITHUB_TOKEN }}
50+
file_glob: true
51+
file: "release.zip"
52+
overwrite: true

0 commit comments

Comments
 (0)