You're viewing an older version of this GitHub Action. Do you want to see the latest version instead?
GitHub Action
Set up CloudQuery
v3.0.8
A GitHub action to download the CloudQuery CLI so it can be used in other steps.
- We only support Linux or MacOS runners. Contributions welcomed to add Windows support 🪟
- CloudQuery source and destination configuration files. See CloudQuery docs for more information.
Example usage:
Create a .github/workflows/cloudquery.yml
file with the content of:
name: CloudQuery
on:
schedule:
# Run daily at 03:00 (3am)
- cron: '0 3 * * *'
jobs:
cloudquery:
runs-on: ubuntu-latest
steps:
# Checkout a git repository with a pre-existing CloudQuery configuration files
- uses: actions/checkout@v3
# Setup AWS credentials (example)
- name: Configure AWS credentials
uses: aws-actions/configure-aws-credentials@v1
with:
role-to-assume: <role-arn>
aws-region: <region>
- uses: cloudquery/setup-cloudquery@v2
name: Setup CloudQuery
with:
# Required. Must be a valid SemVer version
version: 'v3.9.0'
- name: Sync with CloudQuery
run: cloudquery sync [file or directories...] --log-console