[READ-ONLY] Mirror of https://github.com/andrioid/setup-rclone-action. downloads and caches rclone for your workflows
0

Configure Feed

Select the types of activity you want to include in your feed.

16 1 1

Clone this repository

https://git.vm.fail/andri.dk/setup-rclone-action https://git.vm.fail/did:plc:il3uixd6nrn3fcjjki5cvimh
ssh://git@knot1.tangled.sh:2222/andri.dk/setup-rclone-action ssh://git@knot1.tangled.sh:2222/did:plc:il3uixd6nrn3fcjjki5cvimh

For self-hosted knots, clone URLs may differ based on your setup.


README.md

setup-rclone#

Installs and caches the rclone tool.

Usage#

# in your job:
name: MY GREAT JOB
on:
  push:
    branches:
      - '*'
jobs:
  rclone-example:
    name: rclone example!
    runs-on: ubuntu-latest

    steps:
    - uses: actions/checkout@v1
    - uses: andrioid/setup-rclone@latest
    - name: Show folks how to run rclone:
      run: |
        rclone --help

Local Development#

Change the index.ts and remember to run npm run build afterwards. I use esbuild to bundle the source-code.

Credits#

  • setup-yq inspired me to write this. His action is very lean and mean.