chore(main): release 4.1.1 #1581
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CloudQuery Parallel | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
types: [opened, synchronize, reopened] | |
jobs: | |
cloudquery: | |
permissions: | |
id-token: write | |
contents: read | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
shard: [1/6, 2/6, 3/6, 4/6, 5/6, 6/6] | |
services: | |
postgres: | |
image: postgres:latest | |
env: | |
POSTGRES_USER: postgres | |
POSTGRES_PASSWORD: pass | |
POSTGRES_DB: postgres | |
ports: | |
- 5432:5432 | |
# Set health checks to wait until postgres has started | |
options: >- | |
--health-cmd pg_isready | |
--health-interval 10s | |
--health-timeout 5s | |
--health-retries 5 | |
steps: | |
- uses: actions/checkout@v4 # Checkout the code so we have access to the config file | |
- name: Configure AWS credentials | |
uses: aws-actions/configure-aws-credentials@e3dd6a429d7300a6a4c196c26e071d42e0343502 # v4 | |
with: | |
role-to-assume: arn:aws:iam::615713231484:role/cq-playground-aws-github-action | |
aws-region: us-east-1 | |
- name: Setup CloudQuery | |
uses: ./. | |
with: | |
version: 'v6.8.0' | |
- name: Sync with CloudQuery | |
run: cloudquery sync example_configs/spec.yml --log-console --shard ${{ matrix.shard }} | |
env: | |
CLOUDQUERY_API_KEY: ${{ secrets.CLOUDQUERY_API_KEY }} | |
CQ_DSN: postgresql://postgres:pass@localhost:5432/postgres?sslmode=disable |