Skip to content

Commit 3669229

Browse files
committed
chore: fix
1 parent b977a3f commit 3669229

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

.github/workflows/publish.yml

+7-7
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 = "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/')

0 commit comments

Comments
 (0)