Skip to content

Commit f080c65

Browse files
committed
ci: fix workflow usage
1 parent 8fddd4a commit f080c65

File tree

3 files changed

+7
-100
lines changed

3 files changed

+7
-100
lines changed

.github/workflows/build.yaml

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

.github/workflows/semantic.release.yaml

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
name: "semantic / release"
22

33
on:
4+
workflow_dispatch:
45
push:
56
branches: [main]
67

@@ -14,6 +15,10 @@ permissions:
1415
pull-requests: write
1516

1617
jobs:
18+
lint:
19+
uses: ./.github/workflows/lint.yaml
20+
test:
21+
uses: ./.github/workflows/test.yml
1722
release:
1823
runs-on: ubuntu-latest
1924
steps:
@@ -30,11 +35,9 @@ jobs:
3035
- name: Install dependencies
3136
run: npm ci
3237

33-
- uses: ./.github/workflows/lint.yaml
34-
- uses: ./.github/workflows/test.yml
35-
- uses: ./.github/workflows/build.yaml
38+
- name: Build extension
39+
run: npm run build
3640

37-
# If all went well, set current main branch state to release
3841
- name: Trigger release
3942
env:
4043
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

CHANGELOG.md

Whitespace-only changes.

0 commit comments

Comments
 (0)