Skip to content

Commit

Permalink
try these things
Browse files Browse the repository at this point in the history
  • Loading branch information
bdemann committed Oct 15, 2024
1 parent 41cffb9 commit 76f1f52
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
6 changes: 5 additions & 1 deletion .github/workflows/release_parallel.yml
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,11 @@ jobs:
BRANCH_NAME="update-${{ needs.prepare-release.outputs.release-version }}-$(echo '${{ matrix.test.displayPath }}' | sed 's/\//-/g')"
git switch -c "$BRANCH_NAME"
git add --all
git commit -m "Update dependencies for ${{ matrix.test.displayPath }}"
if ! git diff --cached --quiet; then
git commit -m "Update dependencies for ${{ matrix.test.displayPath }}"
else
echo "No changes to commit. Skipping commit and push."
fi
git push origin "$BRANCH_NAME"
finalize-release:
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"scripts": {
"typecheck": "tsc --noEmit",
"lint": "if [ \"$npm_config_fix\" ]; then eslint . --ext .js,.ts --cache --fix; else eslint . --ext .js,.ts --cache; fi",
"prepare": "husky install",
"prepare": "[ -f .git/hooks ] && husky install || true",
"install": "cd dfx_extension && ./install.sh",
"test": "test/test.sh"
},
Expand Down

0 comments on commit 76f1f52

Please sign in to comment.