feat: Add Base support to Uniswap widget (#619) #205
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: Release | |
on: | |
push: | |
branches: | |
- main | |
# manual trigger | |
workflow_dispatch: | |
jobs: | |
release: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: ./.github/actions/setup | |
- run: yarn prepare | |
- run: yarn prei18n:compile | |
- uses: crowdin/[email protected] | |
with: | |
upload_sources: true | |
download_translations: true | |
create_pull_request: false | |
push_translations: false | |
localization_branch_name: main | |
source: 'src/locales/en-US.po' | |
translation: 'src/locales/%locale%.po' | |
crowdin_branch_name: widgets | |
token: ${{ secrets.CROWDIN_TOKEN }} | |
project_id: 458284 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
- run: yarn i18n:compile | |
- run: yarn test | |
if: success() | |
env: | |
JSON_RPC_PROVIDER: ${{ secrets.JSON_RPC_PROVIDER }} | |
- run: yarn release | |
if: success() | |
env: | |
NPM_CONFIG_USERCONFIG: /dev/null | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
NPM_TOKEN: ${{ secrets.NPM_TOKEN }} |