Skip to content

Commit

Permalink
more Fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
aaroneiche committed Nov 10, 2024
1 parent f6c760b commit 704196f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,9 +39,9 @@ jobs:
remote_dir="${dir#dist/}"
# Create the directory on the FTP server if it doesn't exist
curl --ftp-ssl --user $FTPES_USERNAME:$FTPES_PASSWORD -Q "MKD $remote_dir" ftp://$FTPES_HOST
curl --ssl-reqd --user $FTPES_USERNAME:$FTPES_PASSWORD -Q "MKD $remote_dir" ftp://$FTPES_HOST
# Upload the file to the correct remote directory
curl -T "$file" --ftp-ssl-reqd --user $FTPES_USERNAME:$FTPES_PASSWORD ftp://$FTPES_HOST$remote_dir/$(basename "$file")
curl -T "$file" --ssl-reqd --user $FTPES_USERNAME:$FTPES_PASSWORD ftp://$FTPES_HOST/$remote_dir/$(basename "$file")
done

0 comments on commit 704196f

Please sign in to comment.