Skip to content

Commit 1e76b8a

Browse files
authored
remove main from legacy manifest (#3934)
* remove main from legacy manifest * publish from branch
1 parent 0a547e0 commit 1e76b8a

3 files changed

Lines changed: 8 additions & 12 deletions

File tree

.github/workflows/publish-legacy.yaml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,21 @@ name: "Publish Legacy Extension"
22

33
on:
44
workflow_dispatch:
5+
inputs:
6+
branch:
7+
description: "Branch to publish from"
8+
required: true
9+
default: "main"
10+
type: string
511

612
jobs:
713
publish:
814
runs-on: ubuntu-latest
915
name: Publish Legacy Extension
1016
steps:
1117
- uses: actions/checkout@v6
18+
with:
19+
ref: ${{ inputs.branch }}
1220
- uses: actions/setup-node@v6
1321
with:
1422
node-version-file: ".nvmrc"

legacy/extension.js

Lines changed: 0 additions & 11 deletions
This file was deleted.

legacy/package.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,6 @@
3030
"Formatters"
3131
],
3232
"icon": "icon.png",
33-
"main": "./extension.js",
3433
"contributes": {},
3534
"deprecated": true
3635
}

0 commit comments

Comments
 (0)