Skip to content

fix: A23 bundesland linking and node owner references (#15) #13

fix: A23 bundesland linking and node owner references (#15)

fix: A23 bundesland linking and node owner references (#15) #13

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/**"