Skip to content

Commit ef83798

Browse files
committed
ci: Check publish job
1 parent 2985f35 commit ef83798

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

.github/workflows/publish.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@ jobs:
3434
.nx
3535
key: ${{ runner.os }}-nx-master
3636
- run: npx nx affected -t build --parallel=3 --exclude='json-api-front,json-api-server,json-api-server-e2e,shared-utils,json-shared-type,database'
37+
- run: ls -l ./dist/libs/json-api/json-api-nestjs-sdk
3738
- name: Publish packages
3839
run: npx nx release publish --dry-run
3940
shell: bash

tools/scripts/prepare-for-angular.mjs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,8 @@ promisify(exec)(
1515
`nx run json-api-nestjs-sdk:compile-for-angular`
1616
).then(r => {
1717
writeFileSync(LIB_ANGULAR_MODULE_PATH, readFileSync(ANGULAR_MODULE_PATH))
18-
console.log(readFileSync(LIB_ANGULAR_MODULE_PATH));
18+
console.log(LIB_ANGULAR_MODULE_PATH);
19+
console.log(readFileSync(LIB_ANGULAR_MODULE_PATH).toString());
1920
}).finally(() => {
2021
unlinkSync(TEMP_FILE_PATH)
2122
})

0 commit comments

Comments
 (0)