This commit is contained in:
2026-09-11 14:55:34 -04:00
parent 660294d0aa
commit 25b2c4be2e
33 changed files with 1293 additions and 34 deletions
+20
View File
@@ -0,0 +1,20 @@
name: CI
on:
push:
pull_request:
workflow_dispatch:
jobs:
verify:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 22
cache: npm
- run: npm ci
- run: npm test
- run: python3 -m py_compile apps/control-center/main.py computer-use/py/*.py
- run: npm run package:test
+28
View File
@@ -0,0 +1,28 @@
name: Rolling release
on:
push:
branches:
- main
workflow_dispatch:
jobs:
release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 22
cache: npm
- run: npm ci
- run: npm test
- run: python3 -m py_compile apps/control-center/main.py computer-use/py/*.py
- run: npm run package
- name: Publish rolling prerelease to Gitea
env:
GITEA_SERVER_URL: ${{ gitea.server_url }}
GITEA_REPOSITORY: ${{ gitea.repository }}
GITEA_SHA: ${{ gitea.sha }}
RELEASE_TOKEN: ${{ secrets.RELEASE_TOKEN }}
run: bash packaging/publish-gitea-release.sh