Skip to content

add russian translation to readme - #690 #84

add russian translation to readme - #690

add russian translation to readme - #690 #84

Workflow file for this run

name: Publish production Typescript changes
on:
push:
branches:
- master
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 16.x
- run: yarn --dev --frozen-lockfile
- run: yarn test
working-directory: expo47
# https://github.com/expo/expo-github-action
# login to expo. using their action avoids ENOSPC: https://github.com/expo/expo-github-action/issues/20
- uses: expo/[email protected]
with:
expo-version: 6.x
token: ${{ secrets.EXPO_TOKEN }}
- run: npm install -g eas-cli # this one doesn't like local installs for some reason
- run: yarn publish-ts # `expo publish` plus some prepublish chores, using eas-cli
working-directory: expo47