-
-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: fix publish workflow [skip ci]
- Loading branch information
Showing
1 changed file
with
7 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -93,6 +93,13 @@ jobs: | |
jq 'del(.publishConfig.provenance)' "$filename" > temp.json && mv temp.json "$filename" | ||
done | ||
- name: Commit Change | ||
run: | | ||
git config --global user.email "[email protected]" | ||
git config --global user.name "Suites e2e" | ||
git add . | ||
git commit -am "remove provenance" | ||
- name: Publish Packages | ||
run: | | ||
yarn lerna publish from-package --yes \ | ||
|