-
Notifications
You must be signed in to change notification settings - Fork 1
45 lines (39 loc) · 1.13 KB
/
ios.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
on:
push:
paths:
- "ios/**"
- ".github/workflows/ios.yaml"
branches: [ "main" ]
name: iOS
jobs:
build:
name: Synchronize libraries
runs-on: ubuntu-latest
steps:
- name: Checkout sources
uses: actions/checkout@v3
- name: Add secret key to runner
env:
SLOTH_IOS_KEY: ${{ secrets.SLOTH_IOS_KEY }}
run: |
mkdir -p ~/.ssh
echo "$SLOTH_IOS_KEY" > ~/.ssh/id_ed25519
chmod 400 ~/.ssh/id_ed25519
wc ~/.ssh/id_ed25519
- name: Checkout remote
run: |
git config --global user.email "[email protected]"
git config --global user.name "GitHub Action Sync Bot"
git clone [email protected]:lambdapioneer/sloth-ios.git target
- name: Replace contents
run: |
cd target
rm -rv *
cp -rv ../ios/LibSloth/* .
git status
- name: Push to remote
run: |
cd target
git add .
git diff-index --quiet HEAD || git commit -m "Automatic publish from github.com/lambdapioneer/sloth"
git push origin main