We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents fad07f3 + ce991b7 commit d0f2d27Copy full SHA for d0f2d27
1 file changed
.github/workflows/release.yml
@@ -5,6 +5,10 @@ on:
5
tags:
6
- "v*"
7
workflow_dispatch:
8
+ inputs:
9
+ version:
10
+ type: string
11
+ description: release version
12
13
jobs:
14
release-plugin:
@@ -46,7 +50,7 @@ jobs:
46
50
47
51
- name: build
48
52
env:
49
- VERSION: ${{ env.RELEASE_VERSION }}
53
+ VERSION: ${{ inputs.version || env.RELEASE_VERSION }}
54
MINIMUNM_VERSION_REQUIREMENT: ${{ secrets.MINIMUNM_VERSION_REQUIREMENT }}
55
run: pnpm build
56
@@ -72,7 +76,7 @@ jobs:
72
76
asset_content_type: application/octet-stream
73
77
74
78
- name: Publish To VS Code Extension Marketplace
75
- run: pnpm vsce publish -p ${{ secrets.VSCE_TOKEN }} --no-dependencies
79
+ run: pnpm vsce publish -p ${{ secrets.VSCE_TOKEN }} --no-dependencies --allow-star-activation
80
81
- name: Publish openVSX
82
run: pnpm dlx ovsx publish nocalhost.vsix -p ${{ secrets.OPEN_VSX_ACCESS_TOKEN }}
0 commit comments