forked from obrassard/action-sharepoint-publish
-
Notifications
You must be signed in to change notification settings - Fork 0
/
action.yml
29 lines (29 loc) · 849 Bytes
/
action.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
# action.yml
name: 'Publish to Sharepoint'
description: 'Create a archive of the repository and upload it to a Sharepoint library'
author: 'Olivier Brassard'
branding:
icon: 'upload-cloud'
color: 'green'
inputs:
site_url:
description: 'The Sharepoint site url'
required: true
sharepoint_user:
description: 'User name to use for authentication'
required: true
sharepoint_password:
description: 'Password to use for authentication'
required: true
library_folder:
description: 'The path where to upload the archive in the library'
required: true
default: "Shared documents"
runs:
using: 'docker'
image: 'Dockerfile'
env:
SITE_URL : ${{ inputs.site_url }}
USER : ${{ inputs.sharepoint_user }}
PASSWD: ${{ inputs.sharepoint_password }}
LIB_FOLDER : ${{ inputs.library_folder }}