File tree Expand file tree Collapse file tree 1 file changed +7
-7
lines changed Expand file tree Collapse file tree 1 file changed +7
-7
lines changed Original file line number Diff line number Diff line change 7878 - name : Push version number to repo
7979 if : startsWith(github.ref, 'refs/tags/')
8080 run : |
81- jq '.version = "0.7.8 "' 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 "[email protected] " @@ -99,18 +99,18 @@ jobs:
9999 with :
100100 name : dist-without-markdown
101101 path : |
102- "${{ steps.version.outputs.ext }}"
103- " mcfunction.tmLanguage.yaml"
104- " mcfunction.tmLanguage.json"
102+ *.vsix
103+ mcfunction.tmLanguage.yaml
104+ mcfunction.tmLanguage.json
105105
106106 - name : Release
107107 uses : softprops/action-gh-release@v1
108108 if : startsWith(github.ref, 'refs/tags/')
109109 with :
110110 files : |
111- " *.vsix"
112- " mcfunction.tmLanguage.yaml"
113- " mcfunction.tmLanguage.json"
111+ *.vsix
112+ mcfunction.tmLanguage.yaml
113+ mcfunction.tmLanguage.json
114114
115115 - name : Release to openvsix
116116 if : startsWith(github.ref, 'refs/tags/')
You can’t perform that action at this time.
0 commit comments