Skip to content

Commit e4a0f12

Browse files
committed
Workflow fix
1 parent 768a36f commit e4a0f12

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

.github/workflows/releases.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,12 +21,11 @@ jobs:
2121
- uses: pnpm/action-setup@v2
2222
with:
2323
version: latest
24-
run_install: |
25-
- recursive: true
26-
args: [--frozen-lockfile, --strict-peer-dependencies]
24+
run_install: false
2725
- name: Build
2826
id: build
2927
run: |
28+
pnpm install --frozen-lockfile
3029
pnpm run build --if-present
3130
mkdir ${{ env.PLUGIN_NAME }}
3231
cp main.js manifest.json styles.css ${{ env.PLUGIN_NAME }}

manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"id": "obsidian-jira-issue",
33
"name": "Jira Issue",
4-
"version": "1.50.3",
4+
"version": "1.50.4",
55
"minAppVersion": "0.12.0",
66
"description": "This plugin allows you to track the progress of Atlassian Jira issues from your Obsidian notes.",
77
"author": "marc0l92",

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "obsidian-jira-issue",
3-
"version": "1.50.3",
3+
"version": "1.50.4",
44
"description": "This plugin allows you to track the progress of [Atlassian Jira](https://www.atlassian.com/software/jira) issues from your [Obsidian](https://obsidian.md/) notes.",
55
"main": "src/main.js",
66
"scripts": {

versions.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,5 +58,6 @@
5858
"1.50.0": "0.12.0",
5959
"1.50.1": "0.12.0",
6060
"1.50.2": "0.12.0",
61-
"1.50.3": "0.12.0"
61+
"1.50.3": "0.12.0",
62+
"1.50.4": "0.12.0"
6263
}

0 commit comments

Comments
 (0)