Skip to content

Update iOS for Swift package #4

Update iOS for Swift package

Update iOS for Swift package #4

Workflow file for this run

on:
pull_request:
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
run: |
mkdir -p ~/.ssh
echo "$SLOTH_IOS_KEY" > ~/.ssh/id_ed25519
chmod 400 ~/.ssh/id_ed25519
- name: Checkout remote
run: |
git clone [email protected]:lambdapioneer/sloth-ios.git target
cd target
- name: Replace contents
run: |
cd target
cp -rv ../ios/RainbowSloth/* .
git add .
- name: Pushy to remote
run: |
git diff-index --quiet HEAD || git commit -m "Automatic publish from github.com/project"
git push target main