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.
1 parent 818f87a commit de19122Copy full SHA for de19122
.github/workflows/publish.yml
@@ -31,12 +31,10 @@ jobs:
31
run: npm run package -- --out redcode-${{ steps.release.outputs.tag_name }}.vsix
32
33
- name: Upload extension to Github
34
- uses: actions/upload-release-asset@v1
+ uses: softprops/action-gh-release@v1
35
+ if: startsWith(github.ref, 'refs/tags/')
36
with:
- upload_url: ${{ steps.release.outputs.upload_url }}
37
- asset_path: redcode-${{ steps.release.outputs.tag_name }}.vsix
38
- asset_name: redcode-${{ steps.release.outputs.tag_name }}.vsix
39
- asset_content_type: application/vsix
+ files: redcode-${{ steps.release.outputs.tag_name }}.vsix
40
41
- name: Publish extension to VSCode marketplace
42
run: npm run publish
0 commit comments