GoogleCloudPlatform / cloud-builders-community

Community-contributed images for Google Cloud Build
https://cloud.google.com/cloud-build/
Apache License 2.0
1.25k stars 851 forks source link

feat/add builder for sqlx-cli tool #630

Open Yukigeshiki opened 1 year ago

Yukigeshiki commented 1 year ago

Adds a builder for the SQLx-cli tool.

Example usage:

- name: 'gcr.io/${_PROJECT_ID}/sqlx'
  id: 'Migrate Database'
  entrypoint: 'sqlx'
  args: [
    'migrate',
    'run',
  ]
  secretEnv: [ 'DATABASE_URL' ]