forked from cahaseler/azure-fileshare-upload
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1 from vanyae-cqc/feature/add-destination-path
Added destination_path as an argument
- Loading branch information
Showing
4 changed files
with
18 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,6 +2,8 @@ | |
|
||
This action uses the [Azure CLI](https://docs.microsoft.com/en-us/cli/azure/install-azure-cli) to upload a directory of your choice to your Azure File Storage. | ||
|
||
It is a fork of https://github.com/cahaseler/azure-fileshare-upload. | ||
|
||
## Usage | ||
|
||
### Example | ||
|
@@ -19,11 +21,12 @@ jobs: | |
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- uses: cahaseler/[email protected] | ||
- uses: vanyae-cqc/[email protected] | ||
with: | ||
account_name: storageaccount | ||
account_key: ${{secrets.ACCOUNT_KEY}} | ||
share_name: azure-fileshare | ||
source_dir: config | ||
destination_path: '/my_fileshare_directory' | ||
cloud: AzureUSGovernment | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters