Skip to content

Commit

Permalink
Simplify syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
Jeto143 committed Mar 1, 2024
1 parent b20399c commit d7ea8de
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/deploy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -47,9 +47,9 @@ jobs:
labels: ${{ steps.meta.outputs.labels }}

- name: Deploy bot to Docker droplet
run: >
eval `ssh-agent -s` &&
ssh-add - <<< "${{ secrets.DEPLOY_PRIVATE_KEY }}" &&
run: |
eval `ssh-agent -s`
ssh-add - <<< "${{ secrets.DEPLOY_PRIVATE_KEY }}"
ssh -o StrictHostKeyChecking=no ${DEPLOY_USER}@${DEPLOY_HOST} -C
"
mkdir -p \${HOME}/${SERVICE_NAME} &&
Expand Down

0 comments on commit d7ea8de

Please sign in to comment.