Skip to content

Commit 0cdef02

Browse files
committed
[ci skip] Add Update Natives workflow
1 parent 8496031 commit 0cdef02

File tree

1 file changed

+28
-0
lines changed

1 file changed

+28
-0
lines changed
Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
name: Update Natives
2+
on: workflow_dispatch
3+
jobs:
4+
update-natives:
5+
name: Update Natives
6+
runs-on: ubuntu-latest
7+
steps:
8+
- name: Download Natives
9+
uses: dawidd6/action-download-artifact@v2
10+
with:
11+
workflow: ci.yml
12+
branch: master
13+
event: push
14+
path: /tmp/artifacts
15+
16+
- name: Checkout Repository
17+
uses: actions/checkout@v2
18+
19+
- name: Update Natives
20+
run: |
21+
mv /tmp/artifacts/common/* bin/
22+
mv /tmp/artifacts/freetype/* bin/freetype/
23+
24+
- name: Commit Natives
25+
uses: EndBug/add-and-commit@v7
26+
with:
27+
default_author: github_actions
28+
message: '[ci skip] Update native binaries'

0 commit comments

Comments
 (0)