File tree Expand file tree Collapse file tree 1 file changed +40
-0
lines changed Expand file tree Collapse file tree 1 file changed +40
-0
lines changed Original file line number Diff line number Diff line change
1
+ name : " Publish"
2
+
3
+ env :
4
+ CI : 1
5
+ # 7 GiB by default on GitHub, setting to 6 GiB
6
+ # https://docs.github.com/en/actions/using-github-hosted-runners/about-github-hosted-runners#supported-runners-and-hardware-resources
7
+ NODE_OPTIONS : --max-old-space-size=6144
8
+ GIT_AUTHOR_NAME : " SWC Bot"
9
+ GIT_AUTHOR_EMAIL : " bot@swc.rs"
10
+ GIT_COMMITTER_NAME : " SWC Bot"
11
+ GIT_COMMITTER_EMAIL : " bot@swc.rs"
12
+ # https://github.com/actions/setup-node/issues/899#issuecomment-1819151595
13
+ SKIP_YARN_COREPACK_CHECK : 1
14
+
15
+ on :
16
+ push :
17
+ branches :
18
+ - publish-*
19
+
20
+ concurrency :
21
+ group : ${{ github.workflow }}
22
+ cancel-in-progress : true
23
+
24
+ jobs :
25
+ publish-npm-nightly :
26
+ name : " Check publish ${{ matrix.package }}"
27
+ strategy :
28
+ fail-fast : false
29
+ matrix :
30
+ package :
31
+ - core
32
+ - html
33
+ uses : ./.github/workflows/publish-npm-package.yml
34
+ secrets : inherit
35
+ with :
36
+ package : ${{ matrix.package }}
37
+ version : " v1.7.15-nightly-20240820.1"
38
+ buildCli : false
39
+ skipBuild : false
40
+ skipPublishing : false
You can’t perform that action at this time.
0 commit comments