Skip to content

Commit

Permalink
replace "env" with "with"
Browse files Browse the repository at this point in the history
  • Loading branch information
mjaschen committed Dec 6, 2023
1 parent 984c64e commit 50c0bc3
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,13 +35,13 @@ jobs:

- name: Deploy
uses: easingthemes/ssh-deploy@v4
env:
SSH_PRIVATE_KEY: "${{ secrets.SSH_PRIVATE_KEY }}"
with:
SSH_PRIVATE_KEY: ${{ secrets.SSH_PRIVATE_KEY }}
ARGS: "-rlgoDzvc -i"
SOURCE: "build/daux/"
REMOTE_HOST: "${{ secrets.DOCS_REMOTE_HOST }}"
REMOTE_USER: "${{ secrets.DOCS_REMOTE_TARGET_PATH }}"
TARGET: "${{ secrets.DOCS_REMOTE_USER }}"
REMOTE_HOST: ${{ secrets.DOCS_REMOTE_HOST }}
REMOTE_USER: ${{ secrets.DOCS_REMOTE_TARGET_PATH }}
TARGET: ${{ secrets.DOCS_REMOTE_USER }}
EXCLUDE: ".DS_Store, .git*"
SCRIPT_BEFORE: |
whoami
Expand Down

0 comments on commit 50c0bc3

Please sign in to comment.