1 parent 61ee0d0 commit 5580aeaCopy full SHA for 5580aea
1 file changed
.github/workflows/build-js.yml
@@ -7,7 +7,6 @@ on:
7
push:
8
branches: [main]
9
paths:
10
- - '.typedoc/**/*'
11
- '*.ts'
12
- '*.js'
13
- '*.json'
@@ -18,10 +17,12 @@ on:
18
17
- 'src/**/*'
19
- 'media/**/*'
20
- 'tests/**/*'
+ workflow_dispatch:
21
22
jobs:
23
build:
24
runs-on: ubuntu-latest
25
+ if: "!contains(github.event.head_commit.message, '[skip ci]')"
26
27
strategy:
28
matrix:
@@ -54,10 +55,9 @@ jobs:
54
55
- name: Pre-Release
56
run: pnpm pre-release
57
- - name: Add lib, types and docs to Git
58
+ - name: Add lib, and types to Git
59
if: ${{ github.ref == 'refs/heads/main' }}
60
run: |
- git add --force docs/
61
git add --force lib/
62
63
- name: Commit files
0 commit comments