File tree Expand file tree Collapse file tree 1 file changed +18
-22
lines changed Expand file tree Collapse file tree 1 file changed +18
-22
lines changed Original file line number Diff line number Diff line change 5
5
types : [published]
6
6
7
7
jobs :
8
- # init:
9
- # uses: ./.github/workflows/00-init.yml
8
+ init :
9
+ uses : ./.github/workflows/00-init.yml
10
10
11
- # init-playground:
12
- # uses: ./.github/workflows/00-init-playground.yml
11
+ init-playground :
12
+ uses : ./.github/workflows/00-init-playground.yml
13
13
14
- # test:
15
- # uses: ./.github/workflows/01-npm-test.yml
16
- # needs: [init]
14
+ test :
15
+ uses : ./.github/workflows/01-npm-test.yml
16
+ needs : [init]
17
17
18
- # build:
19
- # uses: ./.github/workflows/01-build.yml
20
- # needs: [init]
18
+ build :
19
+ uses : ./.github/workflows/01-build.yml
20
+ needs : [init]
21
21
22
- # build-playground:
23
- # uses: ./.github/workflows/01-build-playground.yml
24
- # needs: [init-playground]
22
+ build-playground :
23
+ uses : ./.github/workflows/01-build-playground.yml
24
+ needs : [init-playground]
25
25
26
- # cypress:
27
- # uses: ./.github/workflows/01-cypress.yml
28
- # needs: [build]
29
-
30
- default :
31
- uses : ./.github/workflows/default.yml
26
+ cypress :
27
+ uses : ./.github/workflows/01-cypress.yml
28
+ needs : [build]
32
29
33
30
publishnext :
34
- needs : [default]
35
31
name : Publish experimental Packages
36
- # needs: [test, cypress]
32
+ needs : [test, cypress]
37
33
# Only publish if not on the main branch, the release tag starts with a "v"
38
34
# and is flagged as a prerelease
39
35
if : |
63
59
echo "Semver experimental version $SEMVER_VERSION-$GITHUB_SHA_SHORT"
64
60
65
61
publishlatest :
66
- needs : [default]
67
62
name : Publish stable packages
63
+ needs : [test, cypress]
68
64
if : github.event.release.target_commitish == 'test-package-publishing' && github.event.release.prerelease == false
69
65
runs-on : ubuntu-latest
70
66
steps :
You can’t perform that action at this time.
0 commit comments