Skip to content

Commit f57c5f3

Browse files
committed
[FIX] potentially the matrix check problem
1 parent eb4f421 commit f57c5f3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/publish_vsix.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -161,13 +161,13 @@ jobs:
161161
path: "${{env.WORKING_DIRECTORY}}/*.vsix"
162162

163163
- name: Publish to Marketplace
164-
if: ${{matrix.vscode_version}} == ${{env.LATEST_VERSION}}
164+
if: ${{matrix.vscode_version == env.LATEST_VERSION}}
165165
run: npx vsce publish -p ${{ secrets.VSCE_TOKEN }}
166166
env:
167167
VSCE_PAT: ${{ secrets.VSCE_TOKEN }}
168168

169169
- name: Publish to Open VSX
170-
if: ${{matrix.vscode_version}} == ${{env.LATEST_VERSION}}
170+
if: ${{matrix.vscode_version == env.LATEST_VERSION}}
171171
run: npx ovsx publish -p ${{ secrets.OVSX_TOKEN }}
172172
env:
173173
OVSX_PAT: ${{ secrets.OVSX_TOKEN }}

0 commit comments

Comments
 (0)