Skip to content

Commit

Permalink
ci: configure release-plugin workflow to run on version tag push
Browse files Browse the repository at this point in the history
  • Loading branch information
NickAnderegg committed Mar 24, 2023
1 parent f1ee9d6 commit a1bfc4d
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 5 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/release-plugin.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,8 @@ on:
push:
branches:
- main
tags:
- "*.*.*"
paths-ignore:
- '.github/**'
workflow_dispatch:
Expand Down
4 changes: 2 additions & 2 deletions manifest.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
{
"id": "obsidian-ulid-plugin",
"name": "ULID Manager",
"version": "1.0.0",
"version": "1.1.1",
"minAppVersion": "0.15.0",
"description": "This is a plugin to manage ULID values in the frontmatter of Obsidian notes.",
"author": "Nick Anderegg",
"authorUrl": "https://n3a7.dev",
"isDesktopOnly": false
}
}
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "obsidian-ulid-plugin",
"version": "1.0.0",
"version": "1.1.1",
"description": "This is a plugin to manage ULID values in the frontmatter of Obsidian notes.",
"main": "main.js",
"scripts": {
Expand Down
6 changes: 4 additions & 2 deletions versions.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
{
"1.0.0": "0.15.0"
}
"1.0.0": "0.15.0",
"1.1.0": "0.15.0",
"1.1.1": "0.15.0"
}

0 comments on commit a1bfc4d

Please sign in to comment.