From eb75c5cb29d23ee4a729720a27dfb66403cb0f6d Mon Sep 17 00:00:00 2001 From: Sebastian Popp Date: Mon, 16 Mar 2020 10:45:32 +0100 Subject: [PATCH] update readme and license --- LICENSE | 2 +- README.md | 7 +++---- 2 files changed, 4 insertions(+), 5 deletions(-) diff --git a/LICENSE b/LICENSE index a576e9d..c371d5f 100644 --- a/LICENSE +++ b/LICENSE @@ -1,6 +1,6 @@ MIT License -Copyright (c) 2019 Sebastian Popp +Copyright (c) 2020 Sebastian Popp and contributors Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/README.md b/README.md index a6e8991..22ae874 100644 --- a/README.md +++ b/README.md @@ -12,14 +12,13 @@ jobs: name: Deploy runs-on: ubuntu-latest steps: - - uses: actions/checkout@master + - uses: actions/checkout@v2 - name: Upload ftp - uses: sebastianpopp/ftp-action@releases/v1 + uses: sebastianpopp/ftp-action@releases/v2 with: host: ${{ secrets.FTP_SERVER }} user: ${{ secrets.FTP_USERNAME }} password: ${{ secrets.FTP_PASSWORD }} - forceSsl: true localDir: "dist" remoteDir: "www" ``` @@ -31,6 +30,6 @@ Input parameter | Description | Required | Default host | FTP server name | Yes | N/A user | FTP username | Yes | N/A password | FTP password | Yes | N/A -forceSsl | Force SSL encryption | No | false localDir | The local directory to copy | No | . remoteDir | The remote directory to copy to | No | . +forceSsl | Force SSL encryption | No | false