fix(ci): switch to shared workflow v1 and fix repository url

This commit is contained in:
ClaudiaFang 2026-06-16 03:53:17 +00:00
parent 1bde1c33e9
commit 3a0f99e383
3 changed files with 6 additions and 2 deletions

View file

@ -15,7 +15,7 @@ on:
jobs:
CI:
uses: firstsun-dev/.github/.github/workflows/obsidian-plugin-ci.yml@main
uses: firstsun-dev/.github/.github/workflows/obsidian-plugin-ci.yml@v1
with:
plugin-id: "git-file-sync"
skip-sonar: ${{ vars.ENABLE_CI_SONAR != 'true' }}

View file

@ -18,6 +18,7 @@
{ "type": "build", "release": false },
{ "type": "ci", "release": false },
{ "type": "chore", "scope": "deps", "release": "patch" },
{ "type": "chore", "scope": "deps-dev", "release": "patch" },
{ "type": "chore", "release": false },
{ "breaking": true, "release": "major" }
]

View file

@ -5,7 +5,10 @@
"main": "main.js",
"type": "module",
"author": "ClaudiaFang",
"repository": "github:firstsun-dev/git-files-sync",
"repository": {
"type": "git",
"url": "git+https://github.com/firstsun-dev/git-files-sync.git"
},
"scripts": {
"dev": "node esbuild.config.mjs",
"build": "tsc -noEmit -skipLibCheck && node esbuild.config.mjs production",