notes-to-strapi-export-article-ai 1.0.4 → 1.0.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.github/workflows/deploy.yml +8 -8
- package/.github/workflows/publish.yml +1 -1
- package/README.md +0 -10
- package/manifest.json +1 -1
- package/package.json +4 -4
- package/versions.json +5 -1
|
@@ -19,8 +19,8 @@ jobs:
|
|
|
19
19
|
|
|
20
20
|
- name: Configure Git
|
|
21
21
|
run: |
|
|
22
|
-
git config --local user.email "
|
|
23
|
-
git config --local user.name "
|
|
22
|
+
git config --local user.email "cinquin.andy@gmail.com"
|
|
23
|
+
git config --local user.name "CINQUIN Andy"
|
|
24
24
|
|
|
25
25
|
- name: Use Node.js
|
|
26
26
|
uses: actions/setup-node@v4
|
|
@@ -41,19 +41,19 @@ jobs:
|
|
|
41
41
|
new_version=$(npx semver -i patch $current_version)
|
|
42
42
|
echo "New version: $new_version"
|
|
43
43
|
|
|
44
|
-
while git rev-parse
|
|
44
|
+
while git rev-parse $new_version >/dev/null 2>&1; do
|
|
45
45
|
new_version=$(npx semver -i patch $new_version)
|
|
46
|
-
echo "Tag
|
|
46
|
+
echo "Tag $new_version already exists. Trying next version..."
|
|
47
47
|
done
|
|
48
48
|
|
|
49
49
|
npm version $new_version --no-git-tag-version
|
|
50
50
|
sed -i "s/\"version\": \".*\"/\"version\": \"$new_version\"/" manifest.json
|
|
51
|
-
echo "
|
|
51
|
+
echo "version=$new_version" >> $GITHUB_OUTPUT
|
|
52
52
|
|
|
53
53
|
- name: Commit and Push Version Update
|
|
54
54
|
run: |
|
|
55
55
|
git add package.json manifest.json
|
|
56
|
-
git commit -m "chore(release): ${{ steps.version-bump.outputs.
|
|
57
|
-
git tag
|
|
56
|
+
git commit -m "chore(release): ${{ steps.version-bump.outputs.version }}"
|
|
57
|
+
git tag ${{ steps.version-bump.outputs.version }}
|
|
58
58
|
git push origin main --follow-tags
|
|
59
|
-
git push origin refs/tags
|
|
59
|
+
git push origin refs/tags/${{ steps.version-bump.outputs.version }}
|
package/README.md
CHANGED
|
@@ -167,13 +167,3 @@ This project is licensed under the MIT License. See the [LICENSE](LICENSE) file
|
|
|
167
167
|
|
|
168
168
|
🌟 Elevate your content workflow with Strapi Exporter and unleash the full potential of your Obsidian notes! 🌟
|
|
169
169
|
|
|
170
|
-
### Roadmap
|
|
171
|
-
|
|
172
|
-
- [ ] Make it available as a plugin in Obsidian
|
|
173
|
-
- [ ] Add tests
|
|
174
|
-
- [ ] Renovate
|
|
175
|
-
- [ ] ajouter l'étape de création du plugin (création du folder)
|
|
176
|
-
- [ ] ajouter l'étape de redémarrage d'obsidian
|
|
177
|
-
- [ ] ajouter l'étape de configuration du plugin
|
|
178
|
-
- [ ] ajouter l'étape de configuration du token d'access de strapi (accès etc)
|
|
179
|
-
|
package/manifest.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"id": "notes-to-strapi-export-article-ai",
|
|
3
3
|
"name": "Strapi Exporter, Notes to Strapi article AI enhanced",
|
|
4
|
-
"version": "1.0.
|
|
4
|
+
"version": "1.0.8",
|
|
5
5
|
"minAppVersion": "1.5.0",
|
|
6
6
|
"description": "Effortlessly export your notes to Strapi CMS with AI-powered image handling and SEO optimization. Replace all the images in your notes by uploaded images in Strapi, and add SEO metadata to uploaded images.",
|
|
7
7
|
"author": "Cinquin Andy",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "notes-to-strapi-export-article-ai",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.8",
|
|
4
4
|
"description": "Effortlessly export your Obsidian notes to Strapi CMS with AI-powered image handling and SEO optimization. Replace all the images in your notes by uploaded images in Strapi, and add SEO metadata to uploaded images.",
|
|
5
5
|
"main": "main.js",
|
|
6
6
|
"scripts": {
|
|
@@ -11,9 +11,9 @@
|
|
|
11
11
|
"keywords": [],
|
|
12
12
|
"author": "Cinquin Andy",
|
|
13
13
|
"devDependencies": {
|
|
14
|
-
"@types/node": "20.
|
|
15
|
-
"@typescript-eslint/eslint-plugin": "7.
|
|
16
|
-
"@typescript-eslint/parser": "7.
|
|
14
|
+
"@types/node": "20.12.2",
|
|
15
|
+
"@typescript-eslint/eslint-plugin": "7.4.0",
|
|
16
|
+
"@typescript-eslint/parser": "7.4.0",
|
|
17
17
|
"builtin-modules": "3.3.0",
|
|
18
18
|
"esbuild": "0.20.2",
|
|
19
19
|
"obsidian": "latest",
|