-
Notifications
You must be signed in to change notification settings - Fork 0
50 lines (44 loc) · 1.13 KB
/
ci.yml
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
46
47
48
49
50
name: CI
on:
release:
types: [created]
push:
branches:
- "**"
paths-ignore:
- ".vscode/**"
- ".devcontainer/**"
- ".github/**"
- "!.github/workflows/ci.yml"
- "**.md"
pull_request:
paths-ignore:
- ".vscode/**"
- ".devcontainer/**"
- ".github/**"
- "!.github/workflows/ci.yml"
- "**.md"
jobs:
ci:
runs-on: ubuntu-latest
container:
image: ghcr.io/ten-framework/ten_agent_build:0.2.1
steps:
- uses: actions/checkout@v4
with:
fetch-depth: "0"
submodules: "true"
- name: Check ten dependencies
run: |
tman install
- name: Release
if: startsWith(github.ref, 'refs/tags/')
run: |
# replace version by tag
jq '.version = "${{ github.ref_name }}"' manifest.json >manifest.gen.json
# check after replace
diff manifest.gen.json manifest.json || true
mv manifest.gen.json manifest.json
jq . manifest.json
# publish to store
tman --verbose --user-token ${{ secrets.TEN_CLOUD_STORE }} publish