|
| 1 | +# Github to Google Drive Synchronizer |
| 2 | + |
| 3 | +## Purpose |
| 4 | + |
| 5 | +Use this action to keep a Google Drive folder in sync with the contents of a Github repository. |
| 6 | + |
| 7 | +* This requires a Google service account with **Editor** permissions in the Drive's folder. |
| 8 | +* The Drive account must have **Drive** API access enabled. |
| 9 | +* All files and directories created on Drive will be owned by the provided service account. |
| 10 | +* 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. |
| 11 | +* Any files showing in the log for the provided branch since the first commit will be deleted/overwritten in the Drive folder to match the last commit of the repository; even those created and deleted prior of the implementation of the action. |
| 12 | +* All files and folders that are present in Drive but were never part of the original repository (matched by path) will be left untouched (i.e. not deleted). |
| 13 | +* Files in Drive created from this action will have a description 'Created/Modified/Removed by ${Github2Drive} upon commit xxxxxx'. |
| 14 | +* Deleted files will go to Google Drive's `Trash`, but by Google's design, files in `Trash` can only be seen by the service account. |
| 15 | +* A Slack channel will be notified if a webhook URL is provided. |
| 16 | + |
| 17 | +## Environment |
| 18 | + |
| 19 | +### Mandatory |
| 20 | + |
| 21 | +* **GOOGLE_KEY**: The JSON object of a Google API key for a service account with *Editor* permissions on the provided folder. |
| 22 | +* **GDRIVE_FOLDERID**: The folder ID on Google Drive that would be the root of the uploaded content. |
| 23 | +* **GIT_ORIGIN**: `origin/main` or other branch in the `origin` remote to use as source. |
| 24 | + |
| 25 | +### Optional |
| 26 | + |
| 27 | +* **GIT_SUBDIR**: In the local repository, the path to the subfolder that holds the contents to upload (can be ".") |
| 28 | +* **SLACK_CHANNELS**: List of Slack channels (separated by `|`) to post updates to; these must be URLs from Slack webhooks. |
| 29 | +* **GIT_ROOT**: _[Intended for testing only]_ Local path to the git root folder (normally "." or left unset) (e.g. /home/users/repo) |
| 30 | + |
| 31 | +## Example usage |
| 32 | + |
| 33 | +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`. |
| 34 | + |
| 35 | +On your repository, add the following content to `.github/workflows/action.yml`: |
| 36 | + |
| 37 | +```yaml |
| 38 | +name: CI |
| 39 | +on: [push] |
| 40 | + branches: # Can use 'branches' or 'tags' |
| 41 | + - 'main' # This action only supports one reference |
| 42 | +jobs: |
| 43 | + build: |
| 44 | + runs-on: ubuntu-latest |
| 45 | + steps: |
| 46 | + - uses: actions/checkout@v3 |
| 47 | + with: |
| 48 | + # ref: main # Normally not required |
| 49 | + fetch-depth: 0 |
| 50 | + lfs: true |
| 51 | + - name: Update Guides |
| 52 | + uses: guillep2k/gitub-to-drive@latest |
| 53 | + env: |
| 54 | + GOOGLE_KEY: ${{ secrets.GOOGLE_KEY }} # Always use secrets |
| 55 | + GDRIVE_FOLDERID: ${{ vars.GDRIVE_FOLDERID }} # Use secrets or vars accordingly |
| 56 | + GIT_ORIGIN: ${{ vars.GIT_ORIGIN }} # Use secrets or vars accordingly |
| 57 | + GIT_SUBDIR: ${{ vars.GIT_SUBDIR }} # Use secrets or vars accordingly |
| 58 | + SLACK_CHANNELS: ${{ secrets.SLACK_CHANNELS }} # Always use secrets |
| 59 | +``` |
| 60 | +
|
| 61 | +## Notes for developers |
| 62 | +
|
| 63 | +To publish a new version, the following commands are required: |
| 64 | +
|
| 65 | +``` |
| 66 | +npm run all # Compile and package the project for distribution |
| 67 | +git add . # Add the modified files to git |
| 68 | +git commit -m '...' # Commit the changes on the generated files (edit the commit message) |
| 69 | +git tag -f latest # Move the 'latest' tag to the repository |
| 70 | +git push # Push current (e.g. 'main') branch to Github |
| 71 | +git push -f origin latest # Push the 'latest' tag to Github |
| 72 | +``` |
0 commit comments