Skip to content

Latest commit

 

History

History
53 lines (34 loc) · 1.33 KB

README.md

File metadata and controls

53 lines (34 loc) · 1.33 KB

action-sharepoint-publish

A simple Github Action that create an archive of a repository and upload it to a Sharepoint library

Inputs

site_url

Required The complete url of your sharepoint site. Example : https://you.sharepoint.com/sites/mySite

library_folder

Required The path relative to the library where to upload a file. Example Shared documents/releases.

⚠️ Do not include the first slash

sharepoint_user

Required The username to use for authentication. Example [email protected].

sharepoint_password

Required The user's password. Example MyPassword123!.

💡 Tip : It is recommended to use GitHub Actions Secrets to store sensible informations like passwords

Example usage

This action is particularly useful when triggered by new releases :

name: 'Sharepoint release'

on:
  release:
    types: created

jobs:
  publish:
    runs-on: ubuntu-latest
    steps:
    
    - name: Cloning repo # This step is required
      uses: actions/checkout@v2

    - name: Publish to Sharepoint
      uses: obrassard/[email protected]
      with:
       site_url: 'https://you.sharepoint.com/sites/mySite'
       library_folder: 'Shared documents/releases'
       sharepoint_user: ${{ secrets.USER }}
       sharepoint_password: ${{ secrets.PASSWORD }}