File tree 1 file changed +7
-7
lines changed
1 file changed +7
-7
lines changed Original file line number Diff line number Diff line change 78
78
- name : Push version number to repo
79
79
if : startsWith(github.ref, 'refs/tags/')
80
80
run : |
81
- jq '.version = "0.7.8 "' package.json > package.json.tmp
81
+ jq '.version = "{{ steps.version.outputs.v }} "' package.json > package.json.tmp
82
82
mv package.json.tmp package.json
83
83
git config --global user.name "github-actions"
84
84
git config --global user.email "[email protected] "
@@ -99,18 +99,18 @@ jobs:
99
99
with :
100
100
name : dist-without-markdown
101
101
path : |
102
- "${{ steps.version.outputs.ext }}"
103
- " mcfunction.tmLanguage.yaml"
104
- " mcfunction.tmLanguage.json"
102
+ *.vsix
103
+ mcfunction.tmLanguage.yaml
104
+ mcfunction.tmLanguage.json
105
105
106
106
- name : Release
107
107
uses : softprops/action-gh-release@v1
108
108
if : startsWith(github.ref, 'refs/tags/')
109
109
with :
110
110
files : |
111
- " *.vsix"
112
- " mcfunction.tmLanguage.yaml"
113
- " mcfunction.tmLanguage.json"
111
+ *.vsix
112
+ mcfunction.tmLanguage.yaml
113
+ mcfunction.tmLanguage.json
114
114
115
115
- name : Release to openvsix
116
116
if : startsWith(github.ref, 'refs/tags/')
You can’t perform that action at this time.
0 commit comments