Skip to content

thedefaultman/dropbox-large-file-uploader

Use this GitHub action with your project
Add this Action to an existing workflow or create a new one
View on Marketplace

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

17 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Dropbox Large File Uploader GitHub Action

This action uploads large files to Dropbox using the Dropbox API, handling file uploads in chunks and managing OAuth 2.0 tokens. I've had to go through many iteration of this for the sake of learning my mistakes. Please use the latest release. It should work :)

Inputs

  • app_key: Required. The Dropbox API app key.
  • app_secret: Required. The Dropbox API app secret.
  • refresh_token: Required. The Dropbox API refresh token.
  • file_path: Required. The path to the file to upload.
  • dropbox_path: Required. The destination path in Dropbox.

Example Usage

uses: thedefaultman/dropbox-large-file-uploader@v2.3.5
with:
  app_key: ${{ secrets.DROPBOX_APP_KEY }}
  app_secret: ${{ secrets.DROPBOX_APP_SECRET }}
  refresh_token: ${{ secrets.DROPBOX_REFRESH_TOKEN }}
  file_path: './build.zip'
  dropbox_path: '/your/path/on/dropbox/build.zip'