mirror of
https://github.com/epistemic-technology/co-intelligence.git
synced 2026-07-22 06:45:17 +00:00
Release fixes
This commit is contained in:
parent
34f15e16bd
commit
0f6c1e582f
6 changed files with 31 additions and 5 deletions
10
.github/workflows/release.yml
vendored
10
.github/workflows/release.yml
vendored
|
|
@ -11,6 +11,8 @@ jobs:
|
|||
runs-on: ubuntu-latest
|
||||
permissions:
|
||||
contents: write
|
||||
id-token: write
|
||||
attestations: write
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
|
||||
|
|
@ -24,6 +26,14 @@ jobs:
|
|||
npm install
|
||||
npm run build
|
||||
|
||||
- name: Generate build provenance attestations
|
||||
uses: actions/attest-build-provenance@v2
|
||||
with:
|
||||
subject-path: |
|
||||
dist/main.js
|
||||
dist/manifest.json
|
||||
dist/styles.css
|
||||
|
||||
- name: Create release
|
||||
env:
|
||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||
|
|
|
|||
15
.worklog/2026-05/2026-05-12T19-27-15-git-34f15e1.md
Normal file
15
.worklog/2026-05/2026-05-12T19-27-15-git-34f15e1.md
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
---
|
||||
time: 2026-05-12T19:27:15-04:00
|
||||
kind: commit
|
||||
author: Mike Thicke
|
||||
refs:
|
||||
- git:34f15e16bdd96057498a92e11221c7cf98edf202
|
||||
summary: Add explicit codemirror dependencies to address lint issues
|
||||
---
|
||||
|
||||
Add explicit codemirror dependencies to address lint issues
|
||||
|
||||
```
|
||||
package-lock.json | 16 ++++++----------
|
||||
package.json | 2 ++
|
||||
```
|
||||
|
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"id": "co-intelligence",
|
||||
"name": "Co-Intelligence AI",
|
||||
"version": "1.0.10",
|
||||
"version": "1.0.11",
|
||||
"minAppVersion": "1.11.4",
|
||||
"description": "A full AI chat experience with models from OpenAI, Anthropic, Google, and Perplexity.",
|
||||
"author": "Mike Thicke",
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "co-intelligence",
|
||||
"version": "1.0.10",
|
||||
"version": "1.0.11",
|
||||
"description": "Obsidian plugin for interacting with AI tools",
|
||||
"main": "index.ts",
|
||||
"scripts": {
|
||||
|
|
|
|||
|
|
@ -1,3 +0,0 @@
|
|||
{
|
||||
"1.0.0": "1.8.0"
|
||||
}
|
||||
4
versions.json
Normal file
4
versions.json
Normal file
|
|
@ -0,0 +1,4 @@
|
|||
{
|
||||
"1.0.0": "1.8.0",
|
||||
"1.0.11": "1.11.4"
|
||||
}
|
||||
Loading…
Reference in a new issue