Skip to content

Commit c6e277b

Browse files
committed
test fix release CI
1 parent f11563e commit c6e277b

File tree

1 file changed

+5
-7
lines changed

1 file changed

+5
-7
lines changed

.github/workflows/release.yml

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -40,13 +40,11 @@ jobs:
4040
env:
4141
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
4242
run: |
43-
cd ~
44-
pwd
45-
ls -l ~
46-
echo "${{ secrets.PRIVATE_KEY }}" >> ~/private_key
47-
chmod 600 ~/private_key
48-
ls -l ~
49-
GIT_SSH_COMMAND="ssh -i ~/private_key" git push --follow-tags origin HEAD:main
43+
ls -l /home/runner
44+
echo "${{ secrets.PRIVATE_KEY }}" >> /home/runner/private_key
45+
chmod 600 /home/runner/private_key
46+
ls -l /home/runner
47+
GIT_SSH_COMMAND="ssh -i /home/runner/private_key" git push --follow-tags origin HEAD:main
5048
- name: Generate changelog
5149
run: |
5250
make changelog

0 commit comments

Comments
 (0)