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 0a547e0 commit 1e76b8aCopy full SHA for 1e76b8a
3 files changed
.github/workflows/publish-legacy.yaml
@@ -2,13 +2,21 @@ name: "Publish Legacy Extension"
2
3
on:
4
workflow_dispatch:
5
+ inputs:
6
+ branch:
7
+ description: "Branch to publish from"
8
+ required: true
9
+ default: "main"
10
+ type: string
11
12
jobs:
13
publish:
14
runs-on: ubuntu-latest
15
name: Publish Legacy Extension
16
steps:
17
- uses: actions/checkout@v6
18
+ with:
19
+ ref: ${{ inputs.branch }}
20
- uses: actions/setup-node@v6
21
with:
22
node-version-file: ".nvmrc"
legacy/extension.js
legacy/package.json
@@ -30,7 +30,6 @@
30
"Formatters"
31
],
32
"icon": "icon.png",
33
- "main": "./extension.js",
34
"contributes": {},
35
"deprecated": true
36
}
0 commit comments