Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .changeset/config.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"commit": false,
"fixed": [],
"linked": [],
"access": "restricted",
"access": "public",
"baseBranch": "main",
"updateInternalDependencies": "patch",
"ignore": []
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,8 @@ jobs:
steps:
- name: Checkout Repo
uses: actions/checkout@v3
with:
token: ${{ secrets.GITHUB_TOKEN }}
Comment thread
rupertsworld marked this conversation as resolved.
Outdated

- name: Setup Node.js 20.x
uses: actions/setup-node@v3
Expand All @@ -29,6 +31,8 @@ jobs:
with:
# This expects you to have a script called release which does a build for your packages and calls changeset publish
publish: npm run release
title: 'Release'
commit: 'chore: update package versions'
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
9 changes: 6 additions & 3 deletions cli/package.json
Original file line number Diff line number Diff line change
@@ -1,14 +1,17 @@
{
"name": "@unternet/kernel-cli",
"version": "1.0.0",
"version": "0.1.0",
"main": "index.js",
"type": "module",
"scripts": {
"dev": "vite-node ./src/index.tsx",
"debug": "vite-node ./src/debug.ts"
},
"author": "",
"license": "ISC",
"publishConfig": {
"access": "public"
},
"author": "rupert@unternet.co",
"license": "MIT",
"description": "",
"dependencies": {
"@ai-sdk/openai": "^1.3.22",
Expand Down