Skip to content

Commit d8fce82

Browse files
feature: use action for signing instead of doing it manually
1 parent 4a35042 commit d8fce82

1 file changed

Lines changed: 9 additions & 3 deletions

File tree

.github/workflows/ci.yml

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -154,9 +154,15 @@ jobs:
154154
echo "BRANCH_NAME=${BRANCH_NAME}" >> $GITHUB_ENV
155155
echo "new_version=${NEW_VERSION}" >> $GITHUB_OUTPUT
156156
157-
# Commit and push changes with GPG signing
158-
git add Cargo.toml
159-
git commit -m "chore: bump version to ${NEW_VERSION}"
157+
- name: Commit version change
158+
uses: iarekylew00t/verified-bot-commit@v1
159+
with:
160+
message: "chore: bump version to ${{ env.NEW_VERSION }}"
161+
files: |
162+
Cargo.toml
163+
164+
- name: Push branch
165+
run: |
160166
git push origin $BRANCH_NAME
161167
162168
- name: Create Pull Request

0 commit comments

Comments
 (0)