This PR contains all the work related to setting up this project as required to implement the [Assignment](https://repo.rock-n-code.com/rock-n-code/deep-linking-assignment/wiki/Assignment) on top, as intended. To summarise this work: - [x] created a new **Xcode** project; - [x] cloned the `Wikipedia` app and inserted it into the **Xcode** project; - [x] created the `Locations` app and also, its `Libraries` package; - [x] created the `Shared` package to share dependencies between the apps; - [x] added a `Makefile` file and implemented some **environment** and **help** commands. Co-authored-by: Javier Cicchelli <javier@rock-n-code.com> Reviewed-on: rock-n-code/deep-linking-assignment#1
30 lines
874 B
YAML
30 lines
874 B
YAML
# Transform localizations from TranslateWiki.net
|
|
#
|
|
# As of late 2020, TranslateWiki creates PRs automatically, in line with
|
|
# how they work with other repos. However, the strings still need to be
|
|
# translated to work well with the iOS app. This script runs when a new PR
|
|
# is created by TranslateWiki, to add everything the app needs to the PR.
|
|
#
|
|
name: Import localizations from TranslateWiki
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- twn
|
|
|
|
jobs:
|
|
update-localizations:
|
|
runs-on: macOS-latest
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
|
|
- name: Update localizations
|
|
continue-on-error: true
|
|
run: |
|
|
$GITHUB_WORKSPACE/scripts/localization $GITHUB_WORKSPACE
|
|
git config user.name github-actions
|
|
git config user.email github-actions@github.com
|
|
git add .
|
|
git commit -m "Import translations from TranslateWiki"
|
|
git push
|