Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
32 commits
Select commit Hold shift + click to select a range
f2798fe
fix: test2 (#9)
wenytang-ms-123 Jun 25, 2021
2dbe39a
chore: using cz
wenytang-ms-123 Jun 28, 2021
8803dd2
chore(release): publish
wenytang-ms-123 Jun 28, 2021
73507dd
feat: test1 add log
wenytang-ms-123 Jun 28, 2021
f44fa52
chore(release): publish
wenytang-ms-123 Jun 28, 2021
764e478
feat: test1 remove log
wenytang-ms-123 Jun 30, 2021
36ad0c0
chore(release): publish
wenytang-ms-123 Jun 30, 2021
607571e
chore: update version
wenytang-ms-123 Jun 30, 2021
f2ff734
feat: test1 log
wenytang-ms-123 Jun 30, 2021
13cd27d
chore: update version
wenytang-ms-123 Jun 30, 2021
0c9c35d
chore(release): publish
wenytang-ms-123 Jun 30, 2021
e8e4b91
feat: test1
wenytang-ms-123 Jun 30, 2021
06b7ea9
chore: fix cd
wenytang-ms-123 Jun 30, 2021
811fe24
chore: update cd
wenytang-ms-123 Jun 30, 2021
a6a6082
chore: update yml
wenytang-ms-123 Jun 30, 2021
46e851d
chore: update version
wenytang-ms-123 Jun 30, 2021
9e0e667
chore: update version
wenytang-ms-123 Jun 30, 2021
4ca3c99
feat: test2
wenytang-ms-123 Jun 30, 2021
3d79845
chore: update
wenytang-ms-123 Jun 30, 2021
9c44dce
chore: update yml
wenytang-ms-123 Jun 30, 2021
893b260
feat: test1
wenytang-ms-123 Jun 30, 2021
b3f81b2
chore: update version
wenytang-ms-123 Jun 30, 2021
4978630
chore(release): publish
wenytang-ms-123 Jun 30, 2021
13e9855
chore: update yml
wenytang-ms-123 Jun 30, 2021
703025b
chore: update version
wenytang-ms-123 Jun 30, 2021
6bb0a58
chore(release): publish
wenytang-ms-123 Jun 30, 2021
3485f01
feat: update test1
wenytang-ms-123 Jun 30, 2021
a4d9088
chore: update version
wenytang-ms-123 Jun 30, 2021
2dfb21b
chore: cd yml to prerelease
wenytang-ms-123 Jun 30, 2021
3365ae4
chore: remove convetional-commits config
wenytang-ms-123 Jul 1, 2021
8a61c5e
chore(release): publish
wenytang-ms-123 Jul 1, 2021
4a48c60
chore: test1
wenytang-ms-123 Jul 1, 2021
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 9 additions & 3 deletions .github/workflows/cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,11 +28,11 @@ jobs:
run: |
exit 1

- name: Checkout maven branch
- name: Checkout develop branch
uses: actions/checkout@v2
with:
fetch-depth: 0
ref: maven
ref: develop

- name: Setup node
uses: actions/setup-node@v2.1.2
Expand All @@ -55,4 +55,10 @@ jobs:
- name: release prerelease npm packages to npmjs.org
if: ${{ startsWith(github.event.inputs.version, 'pre') }}
run: |
npx lerna publish --no-private --preid=${{github.event.inputs.preid }} --dist-tag=${{github.event.inputs.preid }} ${{ github.event.inputs.version }} --yes ${{ github.event.inputs.force }}
npx lerna version --no-private prerelease --preid=alpha.$(git rev-parse --short HEAD) --no-push --allow-branch develop --yes
npx lerna publish from-package --dist-tag=alpha --yes --allow-branch develop

- name: console log
run: |
less package.json
working-directory: ./packages/test1
1 change: 0 additions & 1 deletion lerna.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
"version": "independent",
"command":{
"publish": {
"conventionalCommits": true,
"message": "chore(release): publish",
"allowBranch": ["maven"]
}
Expand Down
Loading