-
-
Notifications
You must be signed in to change notification settings - Fork 1.2k
40 lines (36 loc) · 1.02 KB
/
check.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
name: "Publish"
env:
CI: 1
# 7 GiB by default on GitHub, setting to 6 GiB
# https://docs.github.com/en/actions/using-github-hosted-runners/about-github-hosted-runners#supported-runners-and-hardware-resources
NODE_OPTIONS: --max-old-space-size=6144
GIT_AUTHOR_NAME: "SWC Bot"
GIT_AUTHOR_EMAIL: "[email protected]"
GIT_COMMITTER_NAME: "SWC Bot"
GIT_COMMITTER_EMAIL: "[email protected]"
# https://github.com/actions/setup-node/issues/899#issuecomment-1819151595
SKIP_YARN_COREPACK_CHECK: 1
on:
push:
branches:
- publish-*
concurrency:
group: ${{ github.workflow }}
cancel-in-progress: true
jobs:
publish-npm-nightly:
name: "Publish ${{ matrix.package }}@1.7.15-nightly-20240820.6"
strategy:
fail-fast: false
matrix:
package:
- core
- html
uses: ./.github/workflows/publish-npm-package.yml
secrets: inherit
with:
package: ${{ matrix.package }}
version: 1.7.15-nightly-20240820.6
buildCli: true
skipBuild: false
skipPublishing: true