Skip to content

Commit 39ee5ff

Browse files
committedJun 27, 2024·
chore: fix
1 parent e1affd2 commit 39ee5ff

File tree

2 files changed

+45
-45
lines changed

2 files changed

+45
-45
lines changed
 

‎.github/workflows/publish.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ jobs:
7878
- name: Push version number to repo
7979
if: startsWith(github.ref, 'refs/tags/')
8080
run: |
81-
jq '.version = "{{ steps.version.outputs.v }}"' package.json > package.json.tmp
81+
jq '.version = "${{ steps.version.outputs.v }}"' package.json > package.json.tmp
8282
mv package.json.tmp package.json
8383
git config --global user.name "github-actions"
8484
git config --global user.email "action@github.com"

‎package.json

+44-44
Original file line numberDiff line numberDiff line change
@@ -1,46 +1,46 @@
11
{
2-
"name": "syntax-mcfunction",
3-
"publisher": "MinecraftCommands",
4-
"displayName": "syntax-mcfunction",
5-
"description": "Syntax highlighting for mcfunction files (Last Updated: 1.21)",
6-
"icon": "icon.png",
7-
"author": "MinecraftCommands",
8-
"version": "{{ steps.version.outputs.v }}",
9-
"license": "MIT",
10-
"repository": {
11-
"type": "git",
12-
"url": "https://github.com/MinecraftCommands/syntax-mcfunction"
13-
},
14-
"engines": {
15-
"vscode": "^1.81.0"
16-
},
17-
"categories": [
18-
"Programming Languages"
19-
],
20-
"contributes": {
21-
"languages": [
22-
{
23-
"id": "mcfunction",
24-
"aliases": [
25-
"mcfunction",
26-
"mcf",
27-
"MCF"
28-
],
29-
"extensions": [
30-
".mcfunction"
31-
],
32-
"configuration": "./language-configuration.json"
33-
}
2+
"name": "syntax-mcfunction",
3+
"publisher": "MinecraftCommands",
4+
"displayName": "syntax-mcfunction",
5+
"description": "Syntax highlighting for mcfunction files (Last Updated: 1.21)",
6+
"icon": "icon.png",
7+
"author": "MinecraftCommands",
8+
"version": "0.7.8",
9+
"license": "MIT",
10+
"repository": {
11+
"type": "git",
12+
"url": "https://github.com/MinecraftCommands/syntax-mcfunction"
13+
},
14+
"engines": {
15+
"vscode": "^1.81.0"
16+
},
17+
"categories": [
18+
"Programming Languages"
3419
],
35-
"grammars": [
36-
{
37-
"language": "mcfunction",
38-
"scopeName": "source.mcfunction",
39-
"path": "./mcfunction.tmLanguage.json"
40-
}
41-
]
42-
},
43-
"devDependencies": {
44-
"js-yaml": "^4.1.0"
45-
}
46-
}
20+
"contributes": {
21+
"languages": [
22+
{
23+
"id": "mcfunction",
24+
"aliases": [
25+
"mcfunction",
26+
"mcf",
27+
"MCF"
28+
],
29+
"extensions": [
30+
".mcfunction"
31+
],
32+
"configuration": "./language-configuration.json"
33+
}
34+
],
35+
"grammars": [
36+
{
37+
"language": "mcfunction",
38+
"scopeName": "source.mcfunction",
39+
"path": "./mcfunction.tmLanguage.json"
40+
}
41+
]
42+
},
43+
"devDependencies": {
44+
"js-yaml": "^4.1.0"
45+
}
46+
}

0 commit comments

Comments
 (0)
Please sign in to comment.