Skip to content

Merge pull request #70 from ChBrain/feat/a19-withheld-content #72

Merge pull request #70 from ChBrain/feat/a19-withheld-content

Merge pull request #70 from ChBrain/feat/a19-withheld-content #72

Workflow file for this run

name: Sync to Google Drive
on:
push:
branches: [main]
paths-ignore:
- '.github/**'
jobs:
sync:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install rclone
run: curl https://rclone.org/install.sh | sudo bash
- name: Configure rclone
env:
RCLONE_CONF: ${{ secrets.RCLONE_CONF }}
run: |
mkdir -p ~/.config/rclone
printf '%s' "$RCLONE_CONF" > ~/.config/rclone/rclone.conf
- name: Sync Autobahn
run: rclone sync . "gdrive:KAI/Autobahn/" --transfers=4 --delete-after --exclude ".github/**"