Skip to content

Commit f27698c

Browse files
committed
ci: set only publish
1 parent f68bd57 commit f27698c

File tree

6 files changed

+131
-71
lines changed

6 files changed

+131
-71
lines changed

.github/workflows/new-release.yml

Lines changed: 54 additions & 54 deletions
Original file line numberDiff line numberDiff line change
@@ -82,64 +82,64 @@ on:
8282

8383

8484
jobs:
85-
compute-projects:
86-
uses: ./.github/workflows/compute-projects.yml
87-
with:
88-
tagChoice: ${{ github.event.inputs.tagChoice }}
89-
project1: ${{ github.event.inputs.project1 }}
90-
project2: ${{ github.event.inputs.project2 }}
91-
project3: ${{ github.event.inputs.project3 }}
92-
project4: ${{ github.event.inputs.project4 }}
85+
# compute-projects:
86+
# uses: ./.github/workflows/compute-projects.yml
87+
# with:
88+
# tagChoice: ${{ github.event.inputs.tagChoice }}
89+
# project1: ${{ github.event.inputs.project1 }}
90+
# project2: ${{ github.event.inputs.project2 }}
91+
# project3: ${{ github.event.inputs.project3 }}
92+
# project4: ${{ github.event.inputs.project4 }}
93+
#
94+
# test:
95+
# needs: [compute-projects]
96+
# uses: ./.github/workflows/test.yml
97+
# with:
98+
# mainBranch: "last-tag"
99+
# secrets:
100+
# NX_CLOUD_ACCESS_TOKEN: ${{ secrets.NX_CLOUD_ACCESS_TOKEN }}
101+
#
102+
# e2e-test:
103+
# needs: [test]
104+
# uses: ./.github/workflows/e2e-test.yml
105+
# with:
106+
# mainBranch: "last-tag"
107+
# secrets:
108+
# NX_CLOUD_ACCESS_TOKEN: ${{ secrets.NX_CLOUD_ACCESS_TOKEN }}
109+
#
110+
# build:
111+
# needs: [test, e2e-test]
112+
# uses: ./.github/workflows/build.yml
113+
# with:
114+
# mainBranch: "last-tag"
115+
# secrets:
116+
# NX_CLOUD_ACCESS_TOKEN: ${{ secrets.NX_CLOUD_ACCESS_TOKEN }}
117+
#
118+
# upload-badge:
119+
# needs: [ test, e2e-test ]
120+
# uses: ./.github/workflows/upload-badge.yml
121+
# with:
122+
# mainBranch: "last-tag"
123+
# secrets:
124+
# NX_CLOUD_ACCESS_TOKEN: ${{ secrets.NX_CLOUD_ACCESS_TOKEN }}
125+
# GIST_SECRET: ${{ secrets.GIST_SECRET }}
126+
# GIST_ID: ${{ secrets.GIST_ID }}
93127

94-
test:
95-
needs: [compute-projects]
96-
uses: ./.github/workflows/test.yml
97-
with:
98-
mainBranch: "last-tag"
99-
secrets:
100-
NX_CLOUD_ACCESS_TOKEN: ${{ secrets.NX_CLOUD_ACCESS_TOKEN }}
101-
102-
e2e-test:
103-
needs: [test]
104-
uses: ./.github/workflows/e2e-test.yml
105-
with:
106-
mainBranch: "last-tag"
107-
secrets:
108-
NX_CLOUD_ACCESS_TOKEN: ${{ secrets.NX_CLOUD_ACCESS_TOKEN }}
109-
110-
build:
111-
needs: [test, e2e-test]
112-
uses: ./.github/workflows/build.yml
113-
with:
114-
mainBranch: "last-tag"
115-
secrets:
116-
NX_CLOUD_ACCESS_TOKEN: ${{ secrets.NX_CLOUD_ACCESS_TOKEN }}
117-
118-
upload-badge:
119-
needs: [ test, e2e-test ]
120-
uses: ./.github/workflows/upload-badge.yml
121-
with:
122-
mainBranch: "last-tag"
123-
secrets:
124-
NX_CLOUD_ACCESS_TOKEN: ${{ secrets.NX_CLOUD_ACCESS_TOKEN }}
125-
GIST_SECRET: ${{ secrets.GIST_SECRET }}
126-
GIST_ID: ${{ secrets.GIST_ID }}
127-
128-
bump-version:
129-
needs: [build]
130-
uses: ./.github/workflows/bump-version.yml
131-
with:
132-
projects: ${{ needs.compute-projects.outputs.finalProjects }}
133-
beta-release: ${{ fromJSON(github.event.inputs.beta-release) }}
134-
dry-run: ${{ fromJSON(github.event.inputs.dry-run) }}
135-
secrets:
136-
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
137-
GITHUB_TOKEN_SECRET: ${{ secrets.GITHUB_TOKEN }}
138-
PAT: ${{secrets.PAT}}
128+
# bump-version:
129+
# needs: [build]
130+
# uses: ./.github/workflows/bump-version.yml
131+
# with:
132+
# projects: ${{ needs.compute-projects.outputs.finalProjects }}
133+
# beta-release: ${{ fromJSON(github.event.inputs.beta-release) }}
134+
# dry-run: ${{ fromJSON(github.event.inputs.dry-run) }}
135+
# secrets:
136+
# NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
137+
# GITHUB_TOKEN_SECRET: ${{ secrets.GITHUB_TOKEN }}
138+
# PAT: ${{secrets.PAT}}
139139

140140
publish:
141141
if: ${{ fromJSON(github.event.inputs.dry-run) == false }}
142-
needs: [bump-version]
142+
# needs: [bump-version]
143143
uses: ./.github/workflows/publish.yml
144144
secrets:
145145
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}

libs/json-api/json-api-nestjs-microorm/package.json

Lines changed: 15 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,21 @@
11
{
22
"name": "@klerick/json-api-nestjs-microorm",
33
"version": "0.1.0-beta.0",
4+
"license": "MIT",
5+
"private": false,
6+
"contributors": [
7+
{
8+
"email": "[email protected]",
9+
"name": "Aleksandr Kharkovey"
10+
}
11+
],
12+
"repository": {
13+
"type": "git",
14+
"url": "https://github.com/klerick/nestjs-json-api.git"
15+
},
16+
"engines": {
17+
"node": ">= 20.0.0"
18+
},
419
"type": "commonjs",
520
"main": "./src/index.js",
621
"types": "./src/index.d.ts",
@@ -18,8 +33,5 @@
1833
"tslib": ">2.3.0",
1934
"reflect-metadata": "^0.1.12 || ^0.2.0",
2035
"rxjs": "^7.1.0"
21-
},
22-
"publishConfig": {
23-
"access": "public"
2436
}
2537
}

libs/json-api/json-api-nestjs-sdk/package.json

Lines changed: 15 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,21 @@
11
{
22
"name": "@klerick/json-api-nestjs-sdk",
33
"version": "10.0.0-beta.0",
4+
"license": "MIT",
5+
"private": false,
6+
"contributors": [
7+
{
8+
"email": "[email protected]",
9+
"name": "Aleksandr Kharkovey"
10+
}
11+
],
12+
"repository": {
13+
"type": "git",
14+
"url": "https://github.com/klerick/nestjs-json-api.git"
15+
},
16+
"engines": {
17+
"node": ">= 20.0.0"
18+
},
419
"description": "Helper for client JsonAPi Plugin for NestJs",
520
"keywords": [
621
"nestjs",
@@ -42,8 +57,5 @@
4257
"./mjs/src/ngModule.d.ts"
4358
]
4459
}
45-
},
46-
"publishConfig": {
47-
"access": "public"
4860
}
4961
}

libs/json-api/json-api-nestjs-shared/package.json

Lines changed: 16 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,21 @@
11
{
22
"name": "@klerick/json-api-nestjs-shared",
33
"version": "1.0.0-beta.0",
4+
"license": "MIT",
5+
"private": false,
6+
"contributors": [
7+
{
8+
"email": "[email protected]",
9+
"name": "Aleksandr Kharkovey"
10+
}
11+
],
12+
"repository": {
13+
"type": "git",
14+
"url": "https://github.com/klerick/nestjs-json-api.git"
15+
},
16+
"engines": {
17+
"node": ">= 20.0.0"
18+
},
419
"description": "Shared Helper for JsonApi Plugin for NestJs",
520
"keywords": [
621
"nestjs",
@@ -19,8 +34,5 @@
1934
"type": "commonjs",
2035
"main": "./cjs/src/index.js",
2136
"types": "./cjs/src/index.d.ts",
22-
"module": "./mjs/src/index.js",
23-
"publishConfig": {
24-
"access": "public"
25-
}
37+
"module": "./mjs/src/index.js"
2638
}

libs/json-api/json-api-nestjs-typeorm/package.json

Lines changed: 16 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,21 @@
11
{
22
"name": "@klerick/json-api-nestjs-typeorm",
33
"version": "0.1.0-beta.0",
4+
"license": "MIT",
5+
"private": false,
6+
"contributors": [
7+
{
8+
"email": "[email protected]",
9+
"name": "Aleksandr Kharkovey"
10+
}
11+
],
12+
"repository": {
13+
"type": "git",
14+
"url": "https://github.com/klerick/nestjs-json-api.git"
15+
},
16+
"engines": {
17+
"node": ">= 20.0.0"
18+
},
419
"dependencies": {
520
"tslib": ">2.3.0",
621
"reflect-metadata": "^0.1.12 || ^0.2.0",
@@ -18,8 +33,5 @@
1833
"typeorm",
1934
"microorm",
2035
"CRUD"
21-
],
22-
"publishConfig": {
23-
"access": "public"
24-
}
36+
]
2537
}

libs/json-api/json-api-nestjs/package.json

Lines changed: 15 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,21 @@
11
{
22
"name": "@klerick/json-api-nestjs",
33
"version": "10.0.0-beta.0",
4+
"license": "MIT",
5+
"private": false,
6+
"contributors": [
7+
{
8+
"email": "[email protected]",
9+
"name": "Aleksandr Kharkovey"
10+
}
11+
],
12+
"repository": {
13+
"type": "git",
14+
"url": "https://github.com/klerick/nestjs-json-api.git"
15+
},
16+
"engines": {
17+
"node": ">= 20.0.0"
18+
},
419
"type": "commonjs",
520
"description": "JsonApi Plugin for NestJs",
621
"keywords": [
@@ -16,8 +31,5 @@
1631
"tslib": ">2.3.0",
1732
"reflect-metadata": "^0.1.12 || ^0.2.0",
1833
"rxjs": "^7.1.0"
19-
},
20-
"publishConfig": {
21-
"access": "public"
2234
}
2335
}

0 commit comments

Comments
 (0)