Skip to content

Commit

Permalink
Try to fix deployment
Browse files Browse the repository at this point in the history
  • Loading branch information
odolbeau committed Dec 13, 2023
1 parent 11d9b89 commit cb4107c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@ env:

jobs:
deploy:
name: Deploy latest version on $TARGETED_ENVIRONMENT
name: Deploy latest version on ${{ env.TARGETED_ENVIRONMENT }}
runs-on: ubuntu-20.04
environment: $TARGETED_ENVIRONMENT
environment: ${{ env.TARGETED_ENVIRONMENT }}
steps:
- name: Checkout
uses: actions/checkout@v4
Expand All @@ -34,7 +34,7 @@ jobs:
uses: easingthemes/ssh-deploy@main
with:
SSH_PRIVATE_KEY: ${{ secrets.SSH_PRIVATE_KEY }}
ARGS: "-avzr --delete-after"
ARGS: "-avzr"
SOURCE: "/"
REMOTE_HOST: ${{ secrets.REMOTE_HOST }}
REMOTE_USER: ${{ secrets.REMOTE_USER }}
Expand Down

0 comments on commit cb4107c

Please sign in to comment.