We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents beef288 + 2dcf33e commit da0140eCopy full SHA for da0140e
.github/workflows/ci.yml
@@ -53,6 +53,10 @@ jobs:
53
env:
54
NODE_ENV: production
55
56
+ - name: Get VSIX file name
57
+ id: get_vsix
58
+ run: echo "VSIX_FILE=$(ls *.vsix)" >> $GITHUB_ENV
59
+
60
- name: Create GitHub Release
61
id: create_release
62
uses: actions/create-release@v1
@@ -68,6 +72,6 @@ jobs:
68
72
uses: actions/upload-release-asset@v1
69
73
with:
70
74
upload_url: ${{ steps.create_release.outputs.upload_url }}
71
- asset_path: ./vscode-rt-smart-*.vsix
- asset_name: vscode-rt-smart.vsix
75
+ asset_path: ${{ env.VSIX_FILE }}
76
+ asset_name: ${{ env.VSIX_FILE }}
77
asset_content_type: application/octet-stream
0 commit comments