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 8496031 commit 0cdef02Copy full SHA for 0cdef02
.github/workflows/update_natives.yml
@@ -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
27
+ default_author: github_actions
28
+ message: '[ci skip] Update native binaries'
0 commit comments