Skip to content

Commit bf9356e

Browse files
committed
build: add manual trigger to release workflow
This is a test commit to confirm my privileges and re-trigger a release after the last failure.
1 parent 2f4f4dc commit bf9356e

File tree

1 file changed

+8
-6
lines changed

1 file changed

+8
-6
lines changed

.github/workflows/release.yaml

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,10 @@
44
name: Release Extension
55

66
on:
7+
workflow_dispatch:
8+
79
push:
8-
branches: ['main']
10+
branches: ["main"]
911

1012
jobs:
1113
release:
@@ -24,16 +26,16 @@ jobs:
2426
- uses: actions/setup-node@v3
2527
with:
2628
node-version: 18
27-
cache: 'npm'
29+
cache: "npm"
2830

29-
- name: 'Install dependencies'
31+
- name: "Install dependencies"
3032
run: npm ci
3133

32-
- name: 'Build syntaxes, client and server. '
34+
- name: "Build syntaxes, client and server. "
3335
run: npx nx run-many --target=build
3436

35-
- name: 'Package extension'
37+
- name: "Package extension"
3638
run: npx vsce package
3739

38-
- name: 'Semantic Release'
40+
- name: "Semantic Release"
3941
run: npx semantic-release

0 commit comments

Comments
 (0)