Skip to content

Commit

Permalink
fix release ci error
Browse files Browse the repository at this point in the history
  • Loading branch information
SunsetWolf committed Aug 2, 2024
1 parent a79f9f9 commit b54e470
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,14 @@ jobs:
run: |
python -m pip install --upgrade pip
pip install setuptools wheel twine bump2version git-changelog # better-exceptions(optional for debug)
- name: Set up SSH
env:
SSH_PRIVATE_KEY: ${{ secrets.PRIVATE_KEY }}
run: |
mkdir -p ~/.ssh
echo "$SSH_PRIVATE_KEY" > ~/.ssh/id_rsa
chmod 600 ~/.ssh/id_rsa
ssh-keyscan github.com >> ~/.ssh/known_hosts
- name: Bump version
run: |
git config --global user.name 'github-actions[bot]'
Expand Down

0 comments on commit b54e470

Please sign in to comment.