You're viewing an older version of this GitHub Action. Do you want to see the latest version instead?
GitHub Action
Upload File to Sharepoint
v1.0.0
Uploads one or more files (via glob) to Sharepoint site.
The following environment variables & secrets must be defined.
If your full Sharepoint upload path is https://example.sharepoint.com/sites/mygreatsite/Shared%20Documents/reports/detailed
, the following would be defined:
host_name
'example.sharepoint.com'
site_name
'mygreatsite'
upload_path
'reports/detailed'
The following will be provided to you by your Sharepoint administrator when you ask for a client ID. A reminder: put secrets in Settings/Security/Secrets and variables/Actions
tenant_id
client_id
client_secret
You will also need to provide the file or files being sent:
file_path
- A glob; something like
file.txt
or*.md
- A glob; something like
name: example-file-upload
on: workflow_dispatch
jobs:
get_report:
runs-on: ubuntu-latest
steps:
- name: Create Test File
run: touch /tmp/foo.txt
- name: Send to Sharepoint
uses: cringdahl/[email protected]
with:
file_path: "*.txt"
host_name: 'your.sharepoint.com'
site_name: 'some_site'
upload_path: 'fake_files'
tenant_id: ${{ secrets.SHAREPOINT_TENANT_ID }}
client_id: ${{ secrets.SHAREPOINT_CLIENT_ID }}
client_secret: ${{ secrets.SHAREPOINT_CLIENT_SECRET }}