google-drive-upload-git-action icon indicating copy to clipboard operation
google-drive-upload-git-action copied to clipboard

Github action that uploads files to Google Drive

Results 12 google-drive-upload-git-action issues
Sort by recently updated
recently updated
newest added

This allows for mirroring a directory below the top level directory.

This action only works on linux and windows. Would be good if this action could work for Mac OS ![Screenshot from 2024-01-10 15-15-51](https://github.com/adityak74/google-drive-upload-git-action/assets/146932579/2c1240f2-2e2e-49e8-a1a5-b659c833fd13)

**> Run adityak74/google-drive-upload-git-action@main > /usr/bin/docker run --name b61ecae8ee7a346848db5631a69d3932e_710d25 --label 94351b --workdir /github/workspace --rm -e "JAVA_HOME_12.0.2_x64" -e "JAVA_HOME" -e "JAVA_HOME_12_0_2_X64" -e "FLUTTER_ROOT" -e "PUB_CACHE" -e "INPUT_CREDENTIALS" -e "INPUT_FILENAME" -e "INPUT_FOLDERID" -e...

Hi there, I am using a service account to upload a backup of my database to drive. Using your default method, I run into upload quota because service accounts have...

Version used: main Our build process uploads a 6GB tarball to GDrive. Recently and without any changes made, we started to receive this error: `Error: creating/updating file failed with error:...

My action script ```yml name: On Push Run on: push jobs: install_conda: runs-on: ubuntu-latest steps: - name: Upload to gdrive uses: adityak74/google-drive-upload-git-action@main with: credentials: ${{ secrets.GDRIVE_CREDENTIALS }} filename: "file.pdf" folderId:...

I have a bunch of repositories hooked up to different Google Drive folders, but using the same Google Cloud API to upload the files to. The two files uploaded to...

It would be great to have the option to delete files from the folder in the drive which aren't present locally when uploading. This would make it possible to effectively...

Simplest workflow: ```yaml name: make something useful on: [workflow_dispatch] jobs: build: runs-on: windows-latest steps: - uses: actions/checkout@v3 - name: Build Installer executable run: | cd 'Installer' makensis installer.nsi - uses:...