Skip to content

Commit 5c50824

Browse files
authored
Merge pull request #8 from Daolyap/copilot/update-description-and-patch-ui-text
Update plugin description, switch CI to branch-based releases, verify sentence case UI text
2 parents dd3ee06 + 8164c7b commit 5c50824

3 files changed

Lines changed: 12 additions & 4 deletions

File tree

.github/workflows/release.yml

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,11 @@ name: Build and release
22

33
on:
44
push:
5-
tags:
6-
- "v*"
5+
branches:
6+
- main
7+
paths:
8+
- "code/**"
9+
- "manifest.json"
710

811
permissions:
912
contents: write
@@ -34,9 +37,14 @@ jobs:
3437
cp code/manifest.json manifest.json
3538
cp code/versions.json versions.json
3639
40+
- name: Get version
41+
id: version
42+
run: echo "tag=v$(jq -r '.version' manifest.json)" >> $GITHUB_OUTPUT
43+
3744
- name: Create release
3845
uses: softprops/action-gh-release@v2
3946
with:
47+
tag_name: ${{ steps.version.outputs.tag }}
4048
files: |
4149
main.js
4250
manifest.json

code/manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"name": "OpenTerm",
44
"version": "1.1.1",
55
"minAppVersion": "0.15.0",
6-
"description": "Adds context menu options to open files and folders in a terminal, with configurable executables per OS.",
6+
"description": "Adds context menu options to open files and folders in a terminal, with configurable executables/apps for each option.",
77
"author": "Daolyap",
88
"authorUrl": "https://github.com/Daolyap",
99
"isDesktopOnly": true

manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"name": "OpenTerm",
44
"version": "1.1.1",
55
"minAppVersion": "0.15.0",
6-
"description": "Adds context menu options to open files and folders in a terminal, with configurable executables per OS.",
6+
"description": "Adds context menu options to open files and folders in a terminal, with configurable executables/apps for each option.",
77
"author": "Daolyap",
88
"authorUrl": "https://github.com/Daolyap",
99
"isDesktopOnly": true

0 commit comments

Comments
 (0)