add russian translation to readme - #690 #84
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |