-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlets.yaml
37 lines (32 loc) · 1.05 KB
/
lets.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
shell: bash
commands:
build-ui:
description: Builds static in production mode and copy files to src/darq_ui/static
work_dir: client
cmd: npm run build
build-ui-watch:
description: Build and watch static in development mode and copy it to src/darq_ui/static dir
work_dir: client
cmd: npm run build-dev-watch
run-fastapi:
description: Run example fastapi server
work_dir: examples
cmd: pdm run fastapi-server
run-aiohttp:
description: Run example aiohttp server
work_dir: examples
cmd: pdm run aiohttp-server
release:
description: |
Update version in src/darq_ui/__init__.py
Create new annotated tag
Push changes to remote
options: |
Usage: lets release <version> --message=<message>
Options:
<version> Set version
--message=<message>, -m Release message
Example:
lets release 0.7.1 --message="Added federation"
lets release 0.7.2rc1 --message="Added feature"
cmd: ./scripts/release.sh ${LETSOPT_VERSION} "${LETSOPT_MESSAGE}"