File tree 1 file changed +13
-12
lines changed
1 file changed +13
-12
lines changed Original file line number Diff line number Diff line change @@ -29,27 +29,28 @@ jobs:
29
29
uses : actions/download-artifact@v3
30
30
with :
31
31
name : ${{ github.event.repository.name }}.vsix
32
-
32
+
33
+ - name : Tag and Release
34
+ id : tag_release
35
+ uses : softprops/action-gh-release@v1
36
+ with :
37
+ body : Release ${{ env.VERSION }}
38
+ tag_name : ${{ env.VERSION }}
39
+ generate_release_notes : true
40
+ files : |
41
+ **/*.vsix
42
+
33
43
- name : Upload to VsixGallery
34
44
uses : timheuer/openvsixpublish@v1
35
45
with :
36
46
vsix-file : ${{ github.event.repository.name }}.vsix
37
47
38
48
- name : Publish extension to Marketplace
39
49
# if: ${{ contains(github.event.head_commit.message, '[release]') }}
50
+ continue-on-error : true # remove after VS bug fix
40
51
uses :
cezarypiatek/[email protected]
41
52
with :
42
53
extension-file : ' ${{ github.event.repository.name }}.vsix'
43
54
publish-manifest-file : ' vs-publish.json'
44
55
personal-access-code : ${{ secrets.VS_PUBLISHER_ACCESS_TOKEN }}
45
-
46
- - name : Tag and Release
47
- id : tag_release
48
- uses : softprops/action-gh-release@v1
49
- with :
50
- body : Release ${{ env.VERSION }}
51
- tag_name : ${{ env.VERSION }}
52
- generate_release_notes : true
53
- files : |
54
- **/*.vsix
55
-
56
+
You can’t perform that action at this time.
0 commit comments