-
Notifications
You must be signed in to change notification settings - Fork 186
45 lines (40 loc) · 1.12 KB
/
release.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
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 }}