Skip to content

Commit

Permalink
fix: save key in current path
Browse files Browse the repository at this point in the history
  • Loading branch information
muse-sisay authored Feb 4, 2025
1 parent 35e5757 commit ad74bf9
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,10 +37,10 @@ jobs:
- name: Checkout, bun, commit and push version change
run: |
echo "KBOT_PRIVATE_KEY" > /signingkey
echo "KBOT_PRIVATE_KEY" > signingkey
git config user.name "konstruct-bot"]
git config user.email "konstruct-bot@konstruct.io"
git config user.signingkey /signingkey
git config user.signingkey signingkey
npm version ${RELEASE_VERSION} --no-commit-hooks --no-git-tag-version
git add package.json package-lock.json
git commit -S -m "🔖 release: bump version to ${RELEASE_VERSION}" --allow-empty --no-verify
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/update-changelog.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,10 +40,10 @@ jobs:
- name: Commit and Push Changes
run: |
echo "KBOT_PRIVATE_KEY" > /signingkey
echo "KBOT_PRIVATE_KEY" > signingkey
git config user.name "konstruct-bot"
git config user.email "konstruct-bot@konstruct.io"
git config user.signingkey /signingkey
git config user.signingkey signingkey
git add CHANGELOG.md
git commit -S -m "🚀 chore: update changelog for the version ${RELEASE_VERSION}" --no-verify
git log --show-signature -1
Expand Down

0 comments on commit ad74bf9

Please sign in to comment.