We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 179f226 commit 72249dcCopy full SHA for 72249dc
.github/workflows/release.yml
@@ -80,10 +80,8 @@ jobs:
80
npm ci
81
npm run vscode:prepublish
82
83
- - name: package
84
- uses: lannonbr/vsce-action@0f3391ee0477b08fae949eb0a875e91e6d20b075
85
- with:
86
- args: "package"
+ - name: package extension
+ run: npx vsce package -o "./go-${{ env.EXT_VERSION }}.vsix"
87
88
- name: create release
89
id: create_release
@@ -108,6 +106,6 @@ jobs:
108
106
109
107
- name: publish
110
if: env.EXT_ISPREVIEW != 1 && github.repository == 'golang/vscode-go'
111
- run: npx vsce publish -i "./go-nightly-${{ env.VSCODE_GO_VERSION }}.vsix" -p "${{ secrets.VSCE_TOKEN }}"
+ run: npx vsce publish -i "./go-${{ env.EXT_VERSION }}.vsix" -p "${{ secrets.VSCE_TOKEN }}"
112
113
# TODO: check if the commit is in green state. (test-long.yml results)
0 commit comments