Skip to content

Update version to 1.5 #38

Update version to 1.5

Update version to 1.5 #38

Workflow file for this run

name: CI
on:
push:
branches: ["main"]
jobs:
build:
runs-on: macos-14
steps:
- name: Checkout
uses: actions/[email protected]
- name: Setup Xcode Version
uses: maxim-lobanov/[email protected]
with:
xcode-version: latest-stable
- name: Build and Analyze
run: >
xcodebuild clean build analyze
-exportLocalizations
-project "Front Row.xcodeproj"
-scheme "Front Row"
-localizationPath "./locale"
-exportLanguage en
CODE_SIGNING_ALLOWED=NO | xcpretty && exit ${PIPESTATUS[0]}
- name: Upload source locale artifact
uses: actions/[email protected]
with:
name: en-source-locale
path: './locale/en.xcloc/Localized Contents/en.xliff'
crowdin:
runs-on: ubuntu-latest
needs: build
steps:
- uses: actions/[email protected]
with:
name: en-source-locale
github-token: ${{ secrets.GITHUB_TOKEN }}
- name: Upload source to Crowdin
uses: crowdin/[email protected]
with:
upload_sources: true
upload_translations: false
download_translations: false
source: en.xliff
translation: '%osx_locale%.xliff'
project_id: ${{ secrets.CROWDIN_PROJECT_ID }}
token: ${{ secrets.CROWDIN_PERSONAL_TOKEN }}