Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(lerna): aggressive patch bump #1163

Open
wants to merge 20 commits into
base: release-v10
Choose a base branch
from
Open
Changes from 1 commit
Commits
Show all changes
20 commits
Select commit Hold shift + click to select a range
80e999f
fix(lerna): aggressive patch bump
SudilHasithaCognite Oct 7, 2024
b62a9ca
fix(lerna): aggressive patch bump keeping constant version
SudilHasithaCognite Oct 8, 2024
74d6b15
fix(lerna): aggressive patch bump keeping constant version
SudilHasithaCognite Oct 8, 2024
1dcedda
fix(lerna): unpredictable master branch versioning
SudilHasithaCognite Oct 9, 2024
d77da16
chore(fix): switch to patch from conventional commit
SudilHasithaCognite Oct 10, 2024
75af492
chore(doc): update the docs
SudilHasithaCognite Oct 25, 2024
aca7bab
Merge branch 'release-v10' into constant-package-version
SudilHasithaCognite Oct 25, 2024
41796cb
chore(contribution.md): fix documentation
SudilHasithaCognite Nov 4, 2024
54e46c0
fix(release): add custom script to remove rc tag
SudilHasithaCognite Nov 7, 2024
643a8bd
fix(scripts): lint errors
SudilHasithaCognite Nov 7, 2024
2533ec9
Merge branch 'release-v10' into constant-package-version
SudilHasithaCognite Nov 7, 2024
1c96d11
fix(scripts): lint errors
SudilHasithaCognite Nov 7, 2024
97b7a2c
fix(scripts): lint errors
SudilHasithaCognite Nov 7, 2024
bed92df
fix(scripts): lint errors
SudilHasithaCognite Nov 7, 2024
114243c
fix(scripts): lint errors
SudilHasithaCognite Nov 7, 2024
5528e00
feat(release): add rc tag removal script run
SudilHasithaCognite Nov 8, 2024
a0b1adb
fix(versioning): modify rc tag removing script and release.yaml
SudilHasithaCognite Nov 20, 2024
61c0fb9
fix(linting): modify rc tag removing script
SudilHasithaCognite Nov 20, 2024
981a74e
fix(contributing): add the mistakenly removed doc
SudilHasithaCognite Nov 26, 2024
8815be7
fix(contributing): add the mistakenly removed doc
SudilHasithaCognite Nov 26, 2024
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
11 changes: 9 additions & 2 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -85,9 +85,16 @@ jobs:
env:
GH_TOKEN: ${{ secrets.GH_LERNA_TOKEN }} # Temporary fix to make lerna able to push the new versions commit to master
GITHUB_TOKEN: ${{ secrets.GH_LERNA_TOKEN }} # Temporary fix to make lerna able to push the new versions commit to master
run: yarn lerna version --conventional-commits --conventional-prerelease --preid rc --create-release github --no-private --yes

run: |
if [[ "${{contains(github.event.commits[0].message,'[release]')}}" == "true" ]]; then
if [[ "${{contains(github.event.commits[0].message,'[bump-version]')}}" == "true" ]]; then
SudilHasithaCognite marked this conversation as resolved.
Show resolved Hide resolved
yarn lerna version --conventional-commits --conventional-prerelease --preid rc --create-release github --no-private --yes
else:
yarn lerna version --no-git-tag-version --no-push --yes
fi
fi
- name: Lerna Publish
if: contains(github.event.commits[0].message,'[release]')
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_PUBLISH_TOKEN }}
Expand Down
Loading