-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #870 from Chia-Network/develop
Release 1.6.1
- Loading branch information
Showing
13 changed files
with
171 additions
and
114 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 |
---|---|---|
|
@@ -39,8 +39,33 @@ jobs: | |
git add CHANGELOG.md | ||
git config --global user.name 'ChiaAutomation' | ||
git config --global user.email '[email protected]' | ||
git commit -m "Updating changelog for $version" | ||
git commit -m "chore: Updating changelog for $version" | ||
git tag $version | ||
git push origin $version | ||
git push origin main | ||
fi | ||
- name: Checkout develop branch | ||
uses: actions/checkout@v3 | ||
with: | ||
# Need PACKAGE_ADMIN_PAT token so when the tag is created, the tag automation runs | ||
token: ${{ secrets.PACKAGE_ADMIN_PAT }} | ||
fetch-depth: 0 | ||
ref: 'develop' | ||
|
||
- name: Auto-update dev dependencies | ||
run: | | ||
echo "Checking and updating the package.json file now..." | ||
if $(npx --yes npm-check-updates --dep dev -u | grep -q "All dependencies match the latest package versions") | ||
then | ||
echo "No updates found - exiting" | ||
exit 0 | ||
else | ||
echo "Applying updates to the lock file..." | ||
npm update -D | ||
echo "Committing updates to the main branch" | ||
git config --global user.name 'ChiaAutomation' | ||
git config --global user.email '[email protected]' | ||
git commit -m "chore: Updating npm dev dependencies" | ||
git push origin develop | ||
fi |
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
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
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
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 |
---|---|---|
@@ -1 +1 @@ | ||
16.0.0 | ||
16.14 |
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
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
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
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
Oops, something went wrong.