Skip to content

Commit 3938a0d

Browse files
committed
Fix CI
1 parent cd8a184 commit 3938a0d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Diff for: .github/workflows/release.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -28,12 +28,12 @@ jobs:
2828
- name: Update package.json version
2929
run: |
3030
cd projects/layout-components
31-
npm version ${{ steps.get_tag_version.outputs.tag_version }}
31+
npm version --no-git-tag-version ${{ steps.get_tag_version.outputs.tag_version }}
3232
git config --global user.name "nemobot"
3333
git config --global user.email "[email protected]"
3434
git add package.json
3535
git commit -m "Update package version"
36-
git push
36+
git push origin HEAD:main
3737
3838
- name: Build package
3939
run: npx run ng build layout-components

0 commit comments

Comments
 (0)