fix: cmd usage and add timeout testing #36
Workflow file for this run
This file contains hidden or 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: 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.3.3 | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: "0" | |
| submodules: "true" | |
| - name: Check ten dependencies | |
| run: | | |
| task install | |
| task test | |
| - 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 |