Revert "Reapply "[DNA-10871]: Add query source header for redash quer… #11
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: build and push Redash image | ||
on: | ||
push: | ||
branches: | ||
- master | ||
workflow_dispatch: | ||
inputs: | ||
image-tag: | ||
type: string | ||
default: 'latest' | ||
description: Which image-tag to use | ||
jobs: | ||
publish_to_ecr: | ||
name: publish image to ECR | ||
secrets: inherit | ||
uses: careem/shared-workflows/.github/workflows/ecr-publish.yml@master | ||
Check failure on line 18 in .github/workflows/redash-cd.yml GitHub Actions / .github/workflows/redash-cd.ymlInvalid workflow file
|
||
with: | ||
tag: ${{ inputs.image-tag }} | ||
ecr-name: careem-redash | ||
docker-file: Dockerfile |