We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6af7922 commit 0afcb60Copy full SHA for 0afcb60
.github/workflows/release.yml
@@ -42,15 +42,15 @@ jobs:
42
shell: bash
43
run: >
44
npx vsce package;
45
- echo "vsix_path=$(find . -type f -name '*.vsix')" >> $GITHUB_ENV
+ echo "vsix_path=$(ls *.vsix)" >> $GITHUB_ENV
46
47
- name: Upload .vsix file to Github as release asset
48
uses: actions/upload-release-asset@v1
49
env:
50
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
51
with:
52
upload_url: ${{ github.event.release.upload_url }}
53
- asset_path: ${{ env.vsix_path }}
+ asset_path: code-debug/${{ env.vsix_path }}
54
asset_name: ${{ env.vsix_path }}
55
asset_content_type: application/zip
56
0 commit comments