Use this action to keep a Google Drive folder in sync with the contents of a Github repository.
- This requires a Google service account with Editor permissions in the Drive's folder.
- The Drive account must have Drive API access enabled.
- All files and directories created on Drive will be owned by the provided service account.
- The program will sync a snapshot of the files according to the latest contents of the referenced branch, not the contents at the moment of the triggered action. This is meant to prevent that re-running an older action task would overwrite or unsync Drive's contents.
- File matching is performed using
git hash-object
; metadata from previous hashes is stored in the.gitHash
property of the file. - All files and folders that are present in Drive but are not part of the original repository will be sent to trash.
- Files in Drive created from this action will have a description 'Created/Modified/Removed by ${Github2Drive} upon hash xxxxxx'.
- Deleted files will go to Google Drive's
Trash
, but by Google's design, files inTrash
can only be seen by the service account. - A Slack channel will be notified if a webhook URL is provided.
- GOOGLE_KEY: The JSON object of a Google API key for a service account with Editor permissions on the provided folder.
- GDRIVE_FOLDERID: The folder ID on Google Drive that would be the root of the uploaded content.
- GIT_ORIGIN:
origin/main
or other branch in theorigin
remote to use as source.
- GIT_SUBDIR: In the local repository, the path to the subfolder that holds the contents to upload (can be ".")
- SLACK_TOKEN: Slack OAuth token for the Slack API
- SLACK_CHANNELS: Comma separated list of Slack channel IDs to post updates to.
- GIT_GLOB: Glob patterns to match files with, separated by
|
. Use format from the multimatch library. - GIT_ROOT: [Intended for testing only] Local path to the git root folder (normally "." or left unset) (e.g. /home/users/repo)
On your repository, set up GOOGLE_KEY
and optionally SLACK_CHANNELS
as action secrets. Set up GDRIVE_FOLDERID
, GIT_ORIGIN
, and optionally GIT_SUBDIR
. Secrets and variables can be set in Github at Settings
➔ Secrets and variables
➔ Actions
➔ Secrets/Variables
New repository secret/variable
.
On your repository, add the following content to .github/workflows/action.yml
:
name: CI
on: [push]
branches: # Can use 'branches' or 'tags'
- 'main' # This action only supports one reference
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
# ref: main # Normally not required
fetch-depth: 0 # Very important to fetch the whole remote repo!
lfs: true # Make sure to include any required LFS contents, if any
- name: Update Guides
uses: guillep2k/gitub-to-drive@latest
env:
GOOGLE_KEY: ${{ secrets.GOOGLE_KEY }} # Always use secrets
GDRIVE_FOLDERID: ${{ vars.GDRIVE_FOLDERID }} # Use secrets or vars accordingly
GIT_ORIGIN: ${{ vars.GIT_ORIGIN }} # Use secrets or vars accordingly
GIT_SUBDIR: ${{ vars.GIT_SUBDIR }} # Use secrets or vars accordingly
GIT_GLOB: ${{ vars.GIT_GLOB }} # Use secrets or vars accordingly
SLACK_TOKEN: ${{ secrets.SLACK_TOKEN }} # Always use secrets
SLACK_CHANNELS: ${{ secrets.SLACK_CHANNELS }} # Always use secrets
To publish a new version, the following commands are required:
npm run all # Compile and package the project for distribution
git add . # Add the modified files to git
git commit -m '...' # Commit the changes on the generated files (edit the commit message)
git tag -f latest # Move the 'latest' tag to the repository
git push # Push current (e.g. 'main') branch to Github
git push -f origin latest # Push the 'latest' tag to Github