We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9701c40 commit 884b1c0Copy full SHA for 884b1c0
1 file changed
.github/workflows/release.yml
@@ -123,12 +123,13 @@ jobs:
123
124
- name: Commit and push lockfile
125
run: |
126
+ set -e
127
if git diff --quiet pnpm-lock.yaml; then
128
echo "No lockfile changes"
129
else
130
git config user.name "github-actions[bot]"
131
git config user.email "github-actions[bot]@users.noreply.github.com"
132
git add pnpm-lock.yaml
133
git commit -m "chore: update lockfile for release"
- git push
134
+ git push origin changeset-release/main
135
fi
0 commit comments