fix version name in manifest & package to allow review on obs community tool

This commit is contained in:
Axelle Abbadie 2026-05-13 02:10:29 +02:00
parent d62e43f68b
commit 42bff2d6da
4 changed files with 61 additions and 11 deletions

50
.github/workflows/release.yml vendored Normal file
View file

@ -0,0 +1,50 @@
name: Release
on:
push:
tags:
- '[0-9]+.[0-9]+.[0-9]+' # déclenché sur tout tag x.y.z
permissions:
contents: write # créer la release GitHub
attestations: write # signer les artefacts
id-token: write # requis par attest-build-provenance
jobs:
build-and-release:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '20'
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Build
run: npm run build
- name: Attest main.js
uses: actions/attest-build-provenance@v2
with:
subject-path: main.js
- name: Attest styles.css
uses: actions/attest-build-provenance@v2
with:
subject-path: styles.css
- name: Create GitHub Release
uses: softprops/action-gh-release@v2
with:
files: |
main.js
manifest.json
styles.css
generate_release_notes: true

View file

@ -1,7 +1,7 @@
{ {
"id": "pseudonymizer-tool", "id": "pseudonymizer-tool",
"name": "Pseudonymizer Tool", "name": "Pseudonymizer Tool",
"version": "0.1.0", "version": "0.0.6",
"minAppVersion": "1.6.6", "minAppVersion": "1.6.6",
"description": "Pseudonymize and correct interactional transcripts (Jefferson, ICOR, SRT, CHAT/CHA). Designed for qualitative researchers in linguistics and conversation analysis.", "description": "Pseudonymize and correct interactional transcripts (Jefferson, ICOR, SRT, CHAT/CHA). Designed for qualitative researchers in linguistics and conversation analysis.",
"author": "Axelle Abbadie", "author": "Axelle Abbadie",

18
package-lock.json generated
View file

@ -1,12 +1,12 @@
{ {
"name": "pseudobsidianization", "name": "pseudonymizer-tool",
"version": "0.0.1", "version": "0.0.6",
"lockfileVersion": 3, "lockfileVersion": 3,
"requires": true, "requires": true,
"packages": { "packages": {
"": { "": {
"name": "pseudobsidianization", "name": "pseudonymizer-tool",
"version": "0.0.1", "version": "0.0.6",
"dependencies": { "dependencies": {
"@xenova/transformers": "^2.17.2" "@xenova/transformers": "^2.17.2"
}, },
@ -1073,7 +1073,7 @@
"@eslint/core": "^0.17.0", "@eslint/core": "^0.17.0",
"@eslint/plugin-kit": "^0.4.1", "@eslint/plugin-kit": "^0.4.1",
"@humanwhocodes/momoa": "^3.3.10", "@humanwhocodes/momoa": "^3.3.10",
"natural-compare": "^1.4.0" "natural-compare": "^1.6.6"
}, },
"engines": { "engines": {
"node": "^18.18.0 || ^20.9.0 || >=21.1.0" "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
@ -2891,7 +2891,7 @@
"license": "MIT", "license": "MIT",
"dependencies": { "dependencies": {
"balanced-match": "^1.0.0", "balanced-match": "^1.0.0",
"concat-map": "0.0.1" "concat-map": "0.0.6"
} }
}, },
"node_modules/braces": { "node_modules/braces": {
@ -3230,8 +3230,8 @@
} }
}, },
"node_modules/concat-map": { "node_modules/concat-map": {
"version": "0.0.1", "version": "0.0.6",
"resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.6.tgz",
"integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==", "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==",
"dev": true, "dev": true,
"license": "MIT" "license": "MIT"
@ -4273,7 +4273,7 @@
"dependencies": { "dependencies": {
"ajv": "^6.14.0", "ajv": "^6.14.0",
"debug": "^4.3.2", "debug": "^4.3.2",
"espree": "^10.0.1", "espree": "^10.0.6",
"globals": "^14.0.0", "globals": "^14.0.0",
"ignore": "^5.2.0", "ignore": "^5.2.0",
"import-fresh": "^3.2.1", "import-fresh": "^3.2.1",

View file

@ -1,6 +1,6 @@
{ {
"name": "pseudonymizer-tool", "name": "pseudonymizer-tool",
"version": "0.1.0", "version": "0.0.6",
"description": "Plugin Obsidian de pseudonymisation de transcriptions", "description": "Plugin Obsidian de pseudonymisation de transcriptions",
"author": "Axelle Abbadie", "author": "Axelle Abbadie",
"homepage": "https://cv.hal.science/axelle-abbadie/", "homepage": "https://cv.hal.science/axelle-abbadie/",