-
Notifications
You must be signed in to change notification settings - Fork 2
40 lines (31 loc) · 1.02 KB
/
ci.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
name: Manual Build
on: [workflow_dispatch]
env:
FORCE_COLOR: true
jobs:
manual_build:
name: Manual Build
runs-on: ubuntu-latest
steps:
- name: download this project
uses: actions/checkout@v2
- name: install Python
uses: actions/setup-python@v2
with:
python-version: '>=3.7'
- name: download crosslocale-mod-tools
uses: actions/checkout@v2
with:
repository: dmitmel/crosscode-localization-engine
path: crosscode-localization-engine
- name: install crosslocale-mod-tools
run: cd crosscode-localization-engine/mod-tools && ./setup.py develop
- name: download and compile the translations
run: crosslocale-mod-tools --no-progress-bars download
- name: make the distributable archives
run: crosslocale-mod-tools --no-progress-bars make-dist
- name: upload the distributables
uses: actions/upload-artifact@v1
with:
name: dist
path: crosslocale-work/dist