File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -147,13 +147,14 @@ jobs:
147147 file_path : ./artifact/${{ env.INFO_FILE }}
148148
149149 - name : 3. Create Tag & Release
150- uses : ncipollo/release-action@v1.14.0
151- with :
152- artifacts : ./artifact/${{ env.VSIX_FILE }}
153- body : ${{ needs.changelog.outputs.changelog }}
154- makeLatest : true
155- commit : ${{ steps.artifact_manifest.outputs.sha }}
156- tag : ${{ steps.artifact_manifest.outputs.version }}
150+ run : |
151+ gh release create "${{ steps.artifact_manifest.outputs.version }}" `
152+ --title "${{ steps.artifact_manifest.outputs.version }}" `
153+ --notes "${{ needs.changelog.outputs.changelog }}" `
154+ --target "${{ steps.artifact_manifest.outputs.sha }}" `
155+ "./artifact/${{ env.VSIX_FILE }}"
156+ env :
157+ GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
157158
158159 - name : 4. Publish Release to Marketplace
159160 if : success()
You can’t perform that action at this time.
0 commit comments