Skip to content

Commit

Permalink
bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
seethroughdev committed Nov 21, 2023
1 parent 670038b commit b0bfa80
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 8 deletions.
12 changes: 7 additions & 5 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,8 @@ name: Build obsidian plugin

on:
push:
# Sequence of patterns matched against refs/tags
tags:
- "*" # Push events to matching any tag format, i.e. 1.0, 20.15.10
branches:
- master
workflow_dispatch:

env:
Expand All @@ -24,6 +23,9 @@ jobs:
with:
node-version: "16.x"

- name: Set Version ENV
run: echo "VERSION=$(cat package.json | jq -r '.version')" >> $GITHUB_ENV

- name: Install Dependencies
run: npm ci

Expand All @@ -38,8 +40,8 @@ jobs:
main.js
manifest.json
styles.css
tag_name: ${{ github.ref }}
name: ${{ github.ref }}
name: ${{ env.VERSION }}
tag_name: ${{ env.VERSION}}
repository: ${{ github.repository }}
draft: true
prerelease: false
2 changes: 1 addition & 1 deletion manifest.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"id": "recipe-grabber",
"name": "Recipe Grabber",
"version": "0.14.0",
"version": "0.16.0",
"minAppVersion": "0.15.0",
"description": "Quickly grab the important contents of any online recipe.",
"author": "seethroughdev",
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "recipe-grabber",
"version": "0.14.0",
"version": "0.16.0",
"description": "Quickly grab the important contents of any online recipe.",
"main": "main.js",
"repository": {
Expand Down
3 changes: 2 additions & 1 deletion versions.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,6 @@
"0.11.0": "0.15.0",
"0.12.0": "0.15.0",
"0.13.0": "0.15.0",
"0.14.0": "0.15.0"
"0.15.0": "0.15.0",
"0.16.0": "0.15.0"
}

0 comments on commit b0bfa80

Please sign in to comment.