Skip to content

Commit 5b63887

Browse files
committed
fix: add missing publish scripts
1 parent 5a100da commit 5b63887

File tree

2 files changed

+26
-6
lines changed

2 files changed

+26
-6
lines changed

.github/actions/release/action.yml

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -13,12 +13,6 @@ inputs:
1313
runs:
1414
using: composite
1515
steps:
16-
- name: Check Authentication with Registry
17-
env:
18-
NODE_AUTH_TOKEN: ${{ inputs.npm_token }}
19-
shell: bash
20-
run: npm whoami
21-
2216
- name: Version
2317
env:
2418
NODE_AUTH_TOKEN: ${{ inputs.npm_token }}

packages/qwik-nx/project.json

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,32 @@
5555
"jestConfig": "packages/qwik-nx/jest.config.ts",
5656
"passWithNoTests": true
5757
}
58+
},
59+
"version": {
60+
"executor": "@jscutlery/semver:version",
61+
"options": {}
62+
},
63+
"version-publish": {
64+
"executor": "@jscutlery/semver:version",
65+
"options": {
66+
"noVerify": true,
67+
"push": true,
68+
"postTargets": ["qwik-nx:publish", "qwik-nx:push-to-github"]
69+
}
70+
},
71+
"publish": {
72+
"executor": "ngx-deploy-npm:deploy",
73+
"options": {
74+
"access": "public",
75+
"distFolderPath": "packages/qwik-nx"
76+
}
77+
},
78+
"push-to-github": {
79+
"executor": "@jscutlery/semver:github",
80+
"options": {
81+
"tag": "${tag}",
82+
"notes": "${notes}"
83+
}
5884
}
5985
},
6086
"tags": []

0 commit comments

Comments
 (0)