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
- test :
12
- uses : ./.github/workflows/01-npm-test.yml
13
- needs : [init]
11
+ # test:
12
+ # uses: ./.github/workflows/01-npm-test.yml
13
+ # needs: [init]
14
14
15
- build :
16
- uses : ./.github/workflows/01-build.yml
17
- needs : [init]
15
+ # build:
16
+ # uses: ./.github/workflows/01-build.yml
17
+ # needs: [init]
18
18
19
- cypress :
20
- uses : ./.github/workflows/01-cypress.yml
21
- needs : [build]
19
+ # cypress:
20
+ # uses: ./.github/workflows/01-cypress.yml
21
+ # needs: [build]
22
22
23
23
publishnextnpm :
24
24
name : Publish experimental Packages to NPM
25
- needs : [test, cypress]
25
+ # needs: [test, cypress]
26
26
# Only publish if not on the main branch, the release tag starts with a "v"
27
27
# and is flagged as a prerelease
28
28
if : |
44
44
45
45
publishlatestnpm :
46
46
name : Publish stable packages to NPM
47
- needs : [test, cypress]
47
+ # needs: [test, cypress]
48
48
if : github.event.release.target_commitish == 'test-package-publishing' && github.event.release.prerelease == false
49
49
runs-on : ubuntu-latest
50
50
steps :
@@ -61,12 +61,12 @@ jobs:
61
61
echo "Semver stable version unclean $SEMVER_VERSION"
62
62
echo "Semver stable version valid $VALID_SEMVER_VERSION"
63
63
echo "CHANGELOG_TEXT=$(npx conventional-changelog-cli)" >> $GITHUB_ENV
64
- npm version --no-git-tag-version $VALID_SEMVER_VERSION --workspace=@ci-cd/abcd
64
+ npm version --no-git-tag-version 0.0.22 --workspace=@ci-cd/abcd
65
65
npm run publish:abcd
66
66
67
67
publishnextgithub :
68
68
name : Publish experimental Packages to GitHub registry
69
- needs : [test, cypress]
69
+ # needs: [test, cypress]
70
70
# Only publish if not on the main branch, the release tag starts with a "v"
71
71
# and is flagged as a prerelease
72
72
if : |
84
84
85
85
publishlatestgithub :
86
86
name : Publish stable packages to GitHub registry
87
- needs : [test, cypress]
87
+ # needs: [test, cypress]
88
88
if : github.event.release.target_commitish == 'test-package-publishing' && github.event.release.prerelease == false
89
89
runs-on : ubuntu-latest
90
90
steps :
0 commit comments