Skip to content

Commit

Permalink
chore(deno): use deploy key to push
Browse files Browse the repository at this point in the history
  • Loading branch information
cyco130 committed Aug 19, 2023
1 parent e192593 commit 178806d
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/deno.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,4 +63,7 @@ jobs:
git config --global user.email "<>"
git add .
git diff --quiet && git diff --staged --quiet || git commit -m "sync with hattipjs/hattip ${{ github.sha }}"
# Use the GIT_PUSH_KEY secret deploy key
eval "$(ssh-agent -s)"
ssh-add - <<< "${{ secrets.GIT_PUSH_KEY }}"
git push

0 comments on commit 178806d

Please sign in to comment.