Skip to content

Commit

Permalink
ci(debug): add SSH agent action
Browse files Browse the repository at this point in the history
  • Loading branch information
goosewobbler committed Nov 20, 2024
1 parent 178ad9c commit 9fc8187
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/pre-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@ jobs:
- uses: actions/checkout@v4
with:
ref: ${{inputs.branch}}
ssh-key: ${{ secrets.DEPLOY_KEY }}
fetch-depth: 0
- uses: actions/setup-node@v4
with:
Expand All @@ -59,6 +60,11 @@ jobs:
run: |
git config --global user.email "[email protected]"
git config --global user.name "WebdriverIO Release Bot"
- name: SSH Agent
uses: cardoe/ssh-agent-deploy-key@v1
with:
ssh-private-key: |
${{ secrets.DEPLOY_KEY }}
- name: Install Dependencies
run: pnpm install --frozen-lockfile
- name: Publish Pre-Release
Expand Down

0 comments on commit 9fc8187

Please sign in to comment.